qrcode_scanner_liff.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <title>LIFF Starter</title>
  6. <link rel="stylesheet" href="style.css">
  7. <script charset="utf-8" src="https://static.line-scdn.net/liff/edge/2/sdk.js"></script>
  8. </head>
  9. <body>
  10. </body>
  11. <script>
  12. /**
  13. * Display data generated by invoking LIFF methods
  14. */
  15. function displayLiffData() {
  16. document.getElementById('browserLanguage').textContent = liff.getLanguage();
  17. document.getElementById('sdkVersion').textContent = liff.getVersion();
  18. document.getElementById('isInClient').textContent = liff.isInClient();
  19. document.getElementById('isLoggedIn').textContent = liff.isLoggedIn();
  20. document.getElementById('deviceOS').textContent = liff.getOS();
  21. document.getElementById('lineVersion').textContent = liff.getLineVersion();
  22. }
  23. $(document).ready(function() {
  24. liff.init({
  25. liffId: "1656494344-JovNdOv0"
  26. })
  27. .then(() => {
  28. alert('liff.init()'); // test
  29. if (liff.isInClient()) {
  30. if (liff.getOS() == "ios") {
  31. window.location.replace("itms://itunes.apple.com/app/apple-store/id578186283?mt=8");
  32. } else if (liff.getOS() == "android") {
  33. window.location.replace("market://details?id=com.nhiApp.v1");
  34. }
  35. setTimeout(function(){ liff.closeWindow(); }, 3000);
  36. }
  37. })
  38. .catch((err) => {
  39. });
  40. // scanCodeV2 call
  41. liff.scanCodeV2().then(result => {
  42. // e.g. result = { value: "Hello LIFF app!" }
  43. alert('scanCodeV2()'); // test
  44. }).catch(err => {
  45. console.log(err);
  46. });
  47. });
  48. </script>
  49. </html>