function getProfile() { liff .getProfile() .then(profile => { console.log(JSON.stringify(profile)); window.alert(JSON.stringify(profile)); }) .catch(e => { console.log(e); window.alert(e); }); } function getAccessToken() { window.alert(liff.getAccessToken()); } function getContext() { window.alert(JSON.stringify(liff.getContext())); } function sendMessage() { liff .sendMessages([{ type: "text", text: "中文測試 Hello from LIFF2.0" }]) .then(() => { window.alert("Message has been sent"); }) .catch(e => { window.alert(e); }); } function login() { liff.login(); } function scanCode() { liff .scanCode() .then(result => { window.alert(JSON.stringify(result)); }) .catch(e => { window.alert(e); }); } function openWindow() { liff.openWindow({ url: "https://sirateek.me", external: true }); } function closeWindow() { liff.closeWindow(); } function logout() { if (liff.isLoggedIn()) { liff.logout(); window.alert("Successfully to Logout"); location.reload(); } } function shareTargetPicker() { liff .shareTargetPicker([ { "type": "flex", "altText": "Flex Message", "contents": { "type": "bubble", "body": { "type": "box", "layout": "vertical", "spacing": "md", "contents": [ { "type": "text", "text": "BROWN'S ADVENTURE", "size": "xl", "gravity": "center", "weight": "bold", "wrap": true }, { "type": "box", "layout": "vertical", "spacing": "sm", "margin": "lg", "contents": [ { "type": "box", "layout": "baseline", "spacing": "sm", "contents": [ { "type": "text", "text": "Date", "flex": 1, "size": "sm", "color": "#AAAAAA" }, { "type": "text", "text": "Monday 25, 9:00PM", "flex": 4, "size": "sm", "color": "#666666", "wrap": true } ] }, { "type": "box", "layout": "baseline", "spacing": "sm", "contents": [ { "type": "text", "text": "Place", "flex": 1, "size": "sm", "color": "#AAAAAA" }, { "type": "text", "text": "LINE Thailand", "flex": 4, "size": "sm", "color": "#666666", "wrap": true } ] }, { "type": "box", "layout": "vertical", "margin": "xxl", "contents": [ { "type": "spacer" }, { "type": "image", "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/linecorp_code_withborder.png", "size": "xl", "aspectMode": "cover" }, { "type": "text", "text": "You can enter the theater by using this code instead of a ticket", "margin": "xxl", "size": "xs", "color": "#AAAAAA", "wrap": true } ] } ] } ] } } } ]) .then(() => { alert("Shared to the friend(s) you picked"); }) .catch(function(res) { alert(res); }); }