liff-functions.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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": "bubble",
  63. "hero": {
  64. "type": "image",
  65. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/01_1_cafe.png",
  66. "size": "full",
  67. "aspectRatio": "20:13",
  68. "aspectMode": "cover",
  69. "action": {
  70. "type": "uri",
  71. "uri": "http://linecorp.com/"
  72. }
  73. },
  74. "body": {
  75. "type": "box",
  76. "layout": "vertical",
  77. "contents": [
  78. {
  79. "type": "text",
  80. "text": "Brown Cafe",
  81. "weight": "bold",
  82. "size": "xl"
  83. },
  84. {
  85. "type": "box",
  86. "layout": "baseline",
  87. "margin": "md",
  88. "contents": [
  89. {
  90. "type": "icon",
  91. "size": "sm",
  92. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png"
  93. },
  94. {
  95. "type": "icon",
  96. "size": "sm",
  97. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png"
  98. },
  99. {
  100. "type": "icon",
  101. "size": "sm",
  102. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png"
  103. },
  104. {
  105. "type": "icon",
  106. "size": "sm",
  107. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gold_star_28.png"
  108. },
  109. {
  110. "type": "icon",
  111. "size": "sm",
  112. "url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/review_gray_star_28.png"
  113. },
  114. {
  115. "type": "text",
  116. "text": "4.0",
  117. "size": "sm",
  118. "color": "#999999",
  119. "margin": "md",
  120. "flex": 0
  121. }
  122. ]
  123. },
  124. {
  125. "type": "box",
  126. "layout": "vertical",
  127. "margin": "lg",
  128. "spacing": "sm",
  129. "contents": [
  130. {
  131. "type": "box",
  132. "layout": "baseline",
  133. "spacing": "sm",
  134. "contents": [
  135. {
  136. "type": "text",
  137. "text": "Place",
  138. "color": "#aaaaaa",
  139. "size": "sm",
  140. "flex": 1
  141. },
  142. {
  143. "type": "text",
  144. "text": "Miraina Tower, 4-1-6 Shinjuku, Tokyo",
  145. "wrap": true,
  146. "color": "#666666",
  147. "size": "sm",
  148. "flex": 5
  149. }
  150. ]
  151. },
  152. {
  153. "type": "box",
  154. "layout": "baseline",
  155. "spacing": "sm",
  156. "contents": [
  157. {
  158. "type": "text",
  159. "text": "Time",
  160. "color": "#aaaaaa",
  161. "size": "sm",
  162. "flex": 1
  163. },
  164. {
  165. "type": "text",
  166. "text": "10:00 - 23:00",
  167. "wrap": true,
  168. "color": "#666666",
  169. "size": "sm",
  170. "flex": 5
  171. }
  172. ]
  173. }
  174. ]
  175. }
  176. ]
  177. },
  178. "footer": {
  179. "type": "box",
  180. "layout": "vertical",
  181. "spacing": "sm",
  182. "contents": [
  183. {
  184. "type": "button",
  185. "style": "link",
  186. "height": "sm",
  187. "action": {
  188. "type": "uri",
  189. "label": "CALL",
  190. "uri": "https://linecorp.com"
  191. }
  192. },
  193. {
  194. "type": "button",
  195. "style": "link",
  196. "height": "sm",
  197. "action": {
  198. "type": "uri",
  199. "label": "WEBSITE",
  200. "uri": "https://linecorp.com"
  201. }
  202. },
  203. {
  204. "type": "box",
  205. "layout": "vertical",
  206. "contents": [],
  207. "margin": "sm"
  208. }
  209. ],
  210. "flex": 0
  211. }
  212. }
  213. ])
  214. .then(() => {
  215. alert("Shared to the friend(s) you picked");
  216. })
  217. .catch(function(res) {
  218. alert(res);
  219. });
  220. }