liff-functions.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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 flex = {
  60. "type": "flex",
  61. "altText": redistitle,
  62. "contents": redisdata,
  63. };
  64. return flex;
  65. }
  66. var redisdata = '';
  67. function shareTargetPicker() {
  68. liff.shareTargetPicker([
  69. {
  70. 'type': 'text',
  71. 'text': 'Hello, World!'
  72. }
  73. ])
  74. .then(function (res) {
  75. if (res) {
  76. // succeeded in sending a message through TargetPicker
  77. console.log(`[${res.status}] Message sent!`)
  78. } else {
  79. const [majorVer, minorVer] = (liff.getLineVersion() || "").split('.');
  80. if (parseInt(majorVer) == 10 && parseInt(minorVer) < 11) {
  81. // LINE 10.3.0 - 10.10.0
  82. // Old LINE will access here regardless of user's action
  83. console.log('TargetPicker was opened at least. Whether succeeded to send message is unclear')
  84. } else {
  85. // LINE 10.11.0 -
  86. // sending message canceled
  87. console.log('TargetPicker was closed!')
  88. }
  89. }
  90. }).catch(function (error) {
  91. // something went wrong before sending a message
  92. console.log('something wrong happen', error)
  93. })
  94. // const url = 'https://liff.googo.org:9898/yuri'
  95. // axios
  96. // .get(url)
  97. // .then(({data}) => {
  98. // redisdata=data.data;
  99. // redistitle=data.title;
  100. // console.log(redistitle);
  101. // console.log(redisdata);
  102. // liff.shareTargetPicker([
  103. // {
  104. // type: "text",
  105. // text: "Test!"
  106. // }
  107. // ])
  108. // .then(
  109. // console.log("ShareTargetPicker was launched")
  110. // ).catch(function (res) {
  111. // alert(res);
  112. // console.log("Failed to launch ShareTargetPicker", res)
  113. // })
  114. // // liff
  115. // // .shareTargetPicker([
  116. // // createFlexMessageData()
  117. // // ])
  118. // // .then(() => {
  119. // // alert("Shared to the friend(s) you picked");
  120. // // })
  121. // // .catch(function(res) {
  122. // // alert(res);
  123. // // });
  124. // });
  125. }