Created
March 28, 2019 05:02
-
-
Save sithuaung/b871f6a0f6256f8d09f0308e90e94193 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var messages = [ | |
// message | |
{ | |
type: 1, | |
content: { | |
text: "example message", | |
buttons: [ // the same with menu. | |
{ title: "", type: '', payload: ''} | |
] | |
} | |
}, | |
// image | |
{ | |
type: 2, | |
content: { | |
image_url: url, | |
buttons: [ // the same with menu. | |
{ title: "", type: '', payload: ''} | |
] | |
} | |
}, | |
// card | |
{ | |
type: 6, | |
content: [ | |
{ | |
image_url: "url", | |
title: "", | |
subtitle: "", | |
buttons: [ // the same with menu. | |
{ title: "", type: '', payload: ''} | |
] | |
} | |
] | |
}, | |
// gallery | |
// list | |
{ | |
type: 5, | |
top_element_style: "<LARGE | COMPACT>", | |
content: [ | |
{ | |
image_url: "url", | |
title: "", | |
subtitle: "", | |
buttons: [ // the same with menu. | |
{ title: "", type: '', payload: ''} | |
], | |
default_action: { | |
type: "web_url", | |
url: "", | |
messenger_extension: false, | |
webview_height_ratio: "FULL" // <COMPACT | TALL | FULL> | |
} | |
} | |
} | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment