liff-functions.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. function getProfile() {
  2. liff
  3. .getProfile()
  4. .then(profile => {
  5. console.log(JSON.stringify(profile));
  6. window.alert(JSON.stringify(profile));
  7. })
  8. .catch(e => {
  9. console.log(e);
  10. window.alert(e);
  11. });
  12. }
  13. function getAccessToken() {
  14. window.alert(liff.getAccessToken());
  15. }
  16. function getContext() {
  17. window.alert(JSON.stringify(liff.getContext()));
  18. }
  19. function sendMessage() {
  20. liff
  21. .sendMessages([{ type: "text", text: "中文測試 Hello from LIFF2.0" }])
  22. .then(() => {
  23. window.alert("Message has been sent");
  24. })
  25. .catch(e => {
  26. window.alert(e);
  27. });
  28. }
  29. function login() {
  30. liff.login();
  31. }
  32. function scanCode() {
  33. liff
  34. .scanCode()
  35. .then(result => {
  36. window.alert(JSON.stringify(result));
  37. })
  38. .catch(e => {
  39. window.alert(e);
  40. });
  41. }
  42. function openWindow() {
  43. liff.openWindow({
  44. url: "https://sirateek.me",
  45. external: true
  46. });
  47. }
  48. function closeWindow() {
  49. liff.closeWindow();
  50. }
  51. function logout() {
  52. if (liff.isLoggedIn()) {
  53. liff.logout();
  54. window.alert("Successfully to Logout");
  55. location.reload();
  56. }
  57. }
  58. function shareTargetPicker() {
  59. liff
  60. .shareTargetPicker([
  61. {
  62. "type": "flex",
  63. "altText": "Flex Message",
  64. "contents": {
  65. "type": "bubble",
  66. "body": {
  67. "type": "box",
  68. "layout": "vertical",
  69. "spacing": "md",
  70. "contents": [
  71. {
  72. "type": "text",
  73. "text": "BROWN'S ADVENTURE",
  74. "size": "xl",
  75. "gravity": "center",
  76. "weight": "bold",
  77. "wrap": true
  78. },
  79. {
  80. "type": "box",
  81. "layout": "vertical",
  82. "spacing": "sm",
  83. "margin": "lg",
  84. "contents": [
  85. {
  86. "type": "box",
  87. "layout": "baseline",
  88. "spacing": "sm",
  89. "contents": [
  90. {
  91. "type": "text",
  92. "text": "Date",
  93. "flex": 1,
  94. "size": "sm",
  95. "color": "#AAAAAA"
  96. },
  97. {
  98. "type": "text",
  99. "text": "Monday 25, 9:00PM",
  100. "flex": 4,
  101. "size": "sm",
  102. "color": "#666666",
  103. "wrap": true
  104. }
  105. ]
  106. },
  107. {
  108. "type": "box",
  109. "layout": "baseline",
  110. "spacing": "sm",
  111. "contents": [
  112. {
  113. "type": "text",
  114. "text": "Place",
  115. "flex": 1,
  116. "size": "sm",
  117. "color": "#AAAAAA"
  118. },
  119. {
  120. "type": "text",
  121. "text": "LINE Thailand",
  122. "flex": 4,
  123. "size": "sm",
  124. "color": "#666666",
  125. "wrap": true
  126. }
  127. ]
  128. },
  129. {
  130. "type": "box",
  131. "layout": "vertical",
  132. "margin": "xxl",
  133. "contents": [
  134. {
  135. "type": "spacer"
  136. },
  137. {
  138. "type": "image",
  139. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/linecorp_code_withborder.png",
  140. "size": "xl",
  141. "aspectMode": "cover"
  142. },
  143. {
  144. "type": "text",
  145. "text": "You can enter the theater by using this code instead of a ticket",
  146. "margin": "xxl",
  147. "size": "xs",
  148. "color": "#AAAAAA",
  149. "wrap": true
  150. }
  151. ]
  152. }
  153. ]
  154. }
  155. ]
  156. }
  157. }
  158. }
  159. ])
  160. .then(() => {
  161. alert("Shared to the friend(s) you picked");
  162. })
  163. .catch(function(res) {
  164. alert(res);
  165. });
  166. }