1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- function getProfile() {
- liff
- .getProfile()
- .then(profile => {
- console.log(JSON.stringify(profile));
- window.alert(JSON.stringify(profile));
- })
- .catch(e => {
- console.log(e);
- window.alert(e);
- });
- }
- function getAccessToken() {
- window.alert(liff.getAccessToken());
- }
- function getContext() {
- window.alert(JSON.stringify(liff.getContext()));
- }
- function sendMessage() {
- liff
- .sendMessages([{ type: "text", text: "中文測試 Hello from LIFF2.0" }])
- .then(() => {
- window.alert("Message has been sent");
- })
- .catch(e => {
- window.alert(e);
- });
- }
- function login() {
- liff.login();
- }
- function scanCode() {
- liff
- .scanCode()
- .then(result => {
- window.alert(JSON.stringify(result));
- })
- .catch(e => {
- window.alert(e);
- });
- }
- function openWindow() {
- liff.openWindow({
- url: "https://sirateek.me",
- external: true
- });
- }
- function closeWindow() {
- liff.closeWindow();
- }
- function logout() {
- if (liff.isLoggedIn()) {
- liff.logout();
- window.alert("Successfully to Logout");
- location.reload();
- }
- }
- function shareTargetPicker() {
- liff
- .shareTargetPicker([
-
- {
- "type": "bubble",
- "size": "mega",
- "hero": {
- "type": "video",
- "url": "https://youtu.be/K5DEJXajtqA",
- "previewUrl": "https://bnextmedia.s3.hicloud.net.tw/image/album/2021-12/img-1638432415-65491@600.jpg",
- "altContent": {
- "type": "image",
- "size": "full",
- "aspectRatio": "20:13",
- "aspectMode": "cover",
- "url": "https://bnextmedia.s3.hicloud.net.tw/image/album/2021-12/img-1638432415-65491@600.jpg"
- },
- "aspectRatio": "20:13"
- }
- }
- ])
- .then(() => {
- alert("Shared to the friend(s) you picked");
- })
- .catch(function(res) {
- alert(res);
- });
- }
|