liff-functions.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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 createFlexMessageData() {
  59. var myFlexContent =
  60. {
  61. "type": "carousel",
  62. "contents": [
  63. {
  64. "type": "bubble",
  65. "size": "nano",
  66. "header": {
  67. "type": "box",
  68. "layout": "vertical",
  69. "contents": [
  70. {
  71. "type": "text",
  72. "text": "In Progress",
  73. "color": "#ffffff",
  74. "align": "start",
  75. "size": "md",
  76. "gravity": "center"
  77. },
  78. {
  79. "type": "text",
  80. "text": "70%",
  81. "color": "#ffffff",
  82. "align": "start",
  83. "size": "xs",
  84. "gravity": "center",
  85. "margin": "lg"
  86. }
  87. ],
  88. "backgroundColor": "#27ACB2",
  89. "paddingTop": "19px",
  90. "paddingAll": "12px",
  91. "paddingBottom": "16px"
  92. },
  93. "body": {
  94. "type": "box",
  95. "layout": "vertical",
  96. "contents": [
  97. {
  98. "type": "box",
  99. "layout": "horizontal",
  100. "contents": [
  101. {
  102. "type": "text",
  103. "text": "Buy milk and lettuce before class",
  104. "color": "#8C8C8C",
  105. "size": "sm",
  106. "wrap": true
  107. }
  108. ],
  109. "flex": 1
  110. }
  111. ],
  112. "spacing": "md",
  113. "paddingAll": "12px"
  114. },
  115. "styles": {
  116. "footer": {
  117. "separator": false
  118. }
  119. }
  120. },
  121. {
  122. "type": "bubble",
  123. "size": "nano",
  124. "header": {
  125. "type": "box",
  126. "layout": "vertical",
  127. "contents": [
  128. {
  129. "type": "text",
  130. "text": "Pending",
  131. "color": "#ffffff",
  132. "align": "start",
  133. "size": "md",
  134. "gravity": "center"
  135. },
  136. {
  137. "type": "text",
  138. "text": "30%",
  139. "color": "#ffffff",
  140. "align": "start",
  141. "size": "xs",
  142. "gravity": "center",
  143. "margin": "lg"
  144. }
  145. ],
  146. "backgroundColor": "#FF6B6E",
  147. "paddingTop": "19px",
  148. "paddingAll": "12px",
  149. "paddingBottom": "16px"
  150. },
  151. "body": {
  152. "type": "box",
  153. "layout": "vertical",
  154. "contents": [
  155. {
  156. "type": "box",
  157. "layout": "horizontal",
  158. "contents": [
  159. {
  160. "type": "text",
  161. "text": "Wash my car",
  162. "color": "#8C8C8C",
  163. "size": "sm",
  164. "wrap": true
  165. }
  166. ],
  167. "flex": 1
  168. }
  169. ],
  170. "spacing": "md",
  171. "paddingAll": "12px"
  172. },
  173. "styles": {
  174. "footer": {
  175. "separator": false
  176. }
  177. }
  178. },
  179. {
  180. "type": "bubble",
  181. "size": "nano",
  182. "header": {
  183. "type": "box",
  184. "layout": "vertical",
  185. "contents": [
  186. {
  187. "type": "text",
  188. "text": "In Progress",
  189. "color": "#ffffff",
  190. "align": "start",
  191. "size": "md",
  192. "gravity": "center"
  193. },
  194. {
  195. "type": "text",
  196. "text": "100%",
  197. "color": "#ffffff",
  198. "align": "start",
  199. "size": "xs",
  200. "gravity": "center",
  201. "margin": "lg"
  202. }
  203. ],
  204. "backgroundColor": "#A17DF5",
  205. "paddingTop": "19px",
  206. "paddingAll": "12px",
  207. "paddingBottom": "16px"
  208. },
  209. "body": {
  210. "type": "box",
  211. "layout": "vertical",
  212. "contents": [
  213. {
  214. "type": "box",
  215. "layout": "horizontal",
  216. "contents": [
  217. {
  218. "type": "text",
  219. "text": "Buy milk and lettuce before class",
  220. "color": "#8C8C8C",
  221. "size": "sm",
  222. "wrap": true
  223. }
  224. ],
  225. "flex": 1
  226. }
  227. ],
  228. "spacing": "md",
  229. "paddingAll": "12px"
  230. },
  231. "styles": {
  232. "footer": {
  233. "separator": false
  234. }
  235. }
  236. }
  237. ]
  238. };
  239. // var redisdata='';
  240. var flex = {
  241. "type": "flex",
  242. "altText": 'title',
  243. "contents": redisdata,
  244. };
  245. return flex;
  246. }
  247. function shareTargetPicker() {
  248. const url = 'https://jsonplaceholder.typicode.com/posts'
  249. axios
  250. .get(url)
  251. .then(({data}) => {
  252. redisdata=data;
  253. console.log(data);
  254. liff
  255. .shareTargetPicker([
  256. createFlexMessageData()
  257. ])
  258. .then(() => {
  259. alert("Shared to the friend(s) you picked");
  260. })
  261. .catch(function(res) {
  262. alert(res);
  263. });
  264. });
  265. }