Skip to content

Instantly share code, notes, and snippets.

@MarcL
Created November 21, 2019 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcL/9c6b60f9365a4ee99a3ba9a9bb83b817 to your computer and use it in GitHub Desktop.
Save MarcL/9c6b60f9365a4ee99a3ba9a9bb83b817 to your computer and use it in GitHub Desktop.
Basic button template for a Facebook JSON advert for Messenger
{
"attachment": {
"type": "template",
"payload": {
"template_type": "generic",
"elements": [{
"title": "Choose your car",
"buttons": [{
"type": "postback",
"title": "Mini",
"payload": "block name: Mini"
},
{
"type": "postback",
"title": "BMW",
"payload": "block name: BMW"
}
]
}]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment