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() { console.log('login'); liff.login(); // liff.login({ // // 使用者登入後導向頁面 // redirectUri: 'https://liff.googo.org/misa/' // }); } // function login() { // console.log('login'); // // liff.login(); // liff.login({ // // 使用者登入後導向頁面 // redirectUri: 'https://liff.googo.org/misa/' // }); // // (async () => { // // await liff.init({ liffId: liffId }) // // if (new URL(window.location).searchParams.get('liff.state')) return // // const liffLoginRedirect = sessionStorage.getItem('liffLoginRedirect') // // if (_.isString(liffLoginRedirect)) { // // sessionStorage.removeItem('liffLoginRedirect') // // location.href = liffLoginRedirect // // console.log(liffLoginRedirect) // // } // // })() // } 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() { console.log('logout'); if (liff.isLoggedIn()) { liff.logout(); window.alert("Successfully to Logout"); location.reload(); } } function createFlexMessageData() { var flex = { "type": "flex", "altText": redistitle, "contents": redisdata, }; alert(`${flex}`) return flex; } var redisdata = ''; function shareTargetPicker() { const url = 'https://liff.googo.org:9898/misa' axios .get(url) .then(({ data }) => { redisdata = data.data; redistitle = data.title; console.log(redistitle); console.log(redisdata); console.log('測試'); /* Test */ liff.shareTargetPicker([ { type: "text", text: "Hello, World!" } ]) .then( console.log("ShareTargetPicker was launched") ).catch(function (res) { alert(res); console.log("Failed to launch ShareTargetPicker", res) }) // liff // .shareTargetPicker([ // createFlexMessageData() // ]) // .then(() => { // alert("Shared to the friend(s) you picked"); // }) // .catch(function(res) { // alert(res); // }); }); }