Skip to content

Instantly share code, notes, and snippets.

@RiceeeChang
Last active October 29, 2018 12:52
Show Gist options
  • Save RiceeeChang/c3b6262aba3e859640a195b8df035d00 to your computer and use it in GitHub Desktop.
Save RiceeeChang/c3b6262aba3e859640a195b8df035d00 to your computer and use it in GitHub Desktop.
Messenger Chatbot messenger with image attachment
{
"type": <image|audio|video|file|template>,
"payload": <PAYLOAD>
}
"attachment":{
"type":"template",
"payload":{
"template_type":"button",
"text":"What do you want to do next?",
"buttons":[
{
"type":"web_url",
"url":"https://www.messenger.com",
"title":"Visit Messenger"
},
]
}
}
"attachment":{
"type": "image",
"payload":{
"url": "http://www.messenger-rocks.com/image.jpg",
"is_reusable": true
}
}
{
"text": <TEXT>,
"attachment": <ATTACHMENT>,
"quick_replies": <QUICK_REPLIES>
}
{
"messaging_type": <messaging_type>,
"recipient": {
"id": <SENDER_PSID>
},
"message": <MESSAGE>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment