123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- 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 createFlexMessageData() {
- var myFlexContent =
- {
- "type": "carousel",
- "contents": [
- {
- "type": "bubble",
- "size": "nano",
- "header": {
- "type": "box",
- "layout": "vertical",
- "contents": [
- {
- "type": "text",
- "text": "In Progress",
- "color": "#ffffff",
- "align": "start",
- "size": "md",
- "gravity": "center"
- },
- {
- "type": "text",
- "text": "70%",
- "color": "#ffffff",
- "align": "start",
- "size": "xs",
- "gravity": "center",
- "margin": "lg"
- }
- ],
- "backgroundColor": "#27ACB2",
- "paddingTop": "19px",
- "paddingAll": "12px",
- "paddingBottom": "16px"
- },
- "body": {
- "type": "box",
- "layout": "vertical",
- "contents": [
- {
- "type": "box",
- "layout": "horizontal",
- "contents": [
- {
- "type": "text",
- "text": "Buy milk and lettuce before class",
- "color": "#8C8C8C",
- "size": "sm",
- "wrap": true
- }
- ],
- "flex": 1
- }
- ],
- "spacing": "md",
- "paddingAll": "12px"
- },
- "styles": {
- "footer": {
- "separator": false
- }
- }
- },
- {
- "type": "bubble",
- "size": "nano",
- "header": {
- "type": "box",
- "layout": "vertical",
- "contents": [
- {
- "type": "text",
- "text": "Pending",
- "color": "#ffffff",
- "align": "start",
- "size": "md",
- "gravity": "center"
- },
- {
- "type": "text",
- "text": "30%",
- "color": "#ffffff",
- "align": "start",
- "size": "xs",
- "gravity": "center",
- "margin": "lg"
- }
- ],
- "backgroundColor": "#FF6B6E",
- "paddingTop": "19px",
- "paddingAll": "12px",
- "paddingBottom": "16px"
- },
- "body": {
- "type": "box",
- "layout": "vertical",
- "contents": [
- {
- "type": "box",
- "layout": "horizontal",
- "contents": [
- {
- "type": "text",
- "text": "Wash my car",
- "color": "#8C8C8C",
- "size": "sm",
- "wrap": true
- }
- ],
- "flex": 1
- }
- ],
- "spacing": "md",
- "paddingAll": "12px"
- },
- "styles": {
- "footer": {
- "separator": false
- }
- }
- },
- {
- "type": "bubble",
- "size": "nano",
- "header": {
- "type": "box",
- "layout": "vertical",
- "contents": [
- {
- "type": "text",
- "text": "In Progress",
- "color": "#ffffff",
- "align": "start",
- "size": "md",
- "gravity": "center"
- },
- {
- "type": "text",
- "text": "100%",
- "color": "#ffffff",
- "align": "start",
- "size": "xs",
- "gravity": "center",
- "margin": "lg"
- }
- ],
- "backgroundColor": "#A17DF5",
- "paddingTop": "19px",
- "paddingAll": "12px",
- "paddingBottom": "16px"
- },
- "body": {
- "type": "box",
- "layout": "vertical",
- "contents": [
- {
- "type": "box",
- "layout": "horizontal",
- "contents": [
- {
- "type": "text",
- "text": "Buy milk and lettuce before class",
- "color": "#8C8C8C",
- "size": "sm",
- "wrap": true
- }
- ],
- "flex": 1
- }
- ],
- "spacing": "md",
- "paddingAll": "12px"
- },
- "styles": {
- "footer": {
- "separator": false
- }
- }
- }
- ]
- };
- // var redisdata='';
- var flex = {
- "type": "flex",
- "altText": 'title',
- "contents": redisdata,
- };
- return flex;
- }
- function shareTargetPicker() {
-
- const url = 'https://jsonplaceholder.typicode.com/posts'
- axios
- .get(url)
- .then(({data}) => {
- redisdata=data;
- console.log(data);
- liff
- .shareTargetPicker([
- createFlexMessageData()
- ])
- .then(() => {
- alert("Shared to the friend(s) you picked");
- })
- .catch(function(res) {
- alert(res);
- });
-
- });
- }
|