Skip to content

Instantly share code, notes, and snippets.

@sithuaung
Created March 28, 2019 05:02
Show Gist options
  • Save sithuaung/b871f6a0f6256f8d09f0308e90e94193 to your computer and use it in GitHub Desktop.
Save sithuaung/b871f6a0f6256f8d09f0308e90e94193 to your computer and use it in GitHub Desktop.
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