123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- 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);
- });
- }
|