We are trying to get the persistent menu working on the Facebook channel with the bot framework.
See docs here…
- https://developers.facebook.com/docs/messenger-platform/thread-settings/persistent-menu
- https://developers.facebook.com/docs/messenger-platform/messenger-profile/persistent-menu
The JSON we send matches the example in the second link above, and is very basic:
"persistent_menu": [
{
"locale": "default",
"composer_input_disabled": true,
"call_to_actions": [
{
"type": "postback",
"title": "Help"
},
{
"type": "postback",
"title": "Home"
}
]
}
]
When we send this to the Facebook channel, simply nothing happens.
Any ideas? Thanks in advance.
When we send this to the Facebook channel
? This JSON must be sent using Facebook API, there is no direct link with Bot Framework. Then you can get the call to actions in your bot, but it's another thing – Nicolas R