123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- 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 createFlexMessageData() {
- var flex = {
- "type": "flex",
- "altText": redistitle,
- "contents": redisdata,
- };
- return flex;
- }
- var redisdata = '';
- function shareTargetPicker() {
- liff.shareTargetPicker([
- {
- 'type': 'text',
- 'text': 'Hello, World!'
- }
- ])
- .then(function (res) {
- if (res) {
- // succeeded in sending a message through TargetPicker
- console.log(`[${res.status}] Message sent!`)
- } else {
- const [majorVer, minorVer] = (liff.getLineVersion() || "").split('.');
- if (parseInt(majorVer) == 10 && parseInt(minorVer) < 11) {
- // LINE 10.3.0 - 10.10.0
- // Old LINE will access here regardless of user's action
- console.log('TargetPicker was opened at least. Whether succeeded to send message is unclear')
- } else {
- // LINE 10.11.0 -
- // sending message canceled
- console.log('TargetPicker was closed!')
- }
- }
- }).catch(function (error) {
- // something went wrong before sending a message
- console.log('something wrong happen', error)
- })
- // const url = 'https://liff.googo.org:9898/yuri'
- // axios
- // .get(url)
- // .then(({data}) => {
- // redisdata=data.data;
- // redistitle=data.title;
- // console.log(redistitle);
- // console.log(redisdata);
- // liff.shareTargetPicker([
- // {
- // type: "text",
- // text: "Test!"
- // }
- // ])
- // .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);
- // // });
- // });
- }
|