I have the following fulfillment message which is run success on Dialogflow platform:
return {"fulfillmentMessages": [
{
"platform": "FACEBOOK",
"text": {
"text": ['Great news! Grab a bowl of Pop-Corn and enjoy one of the two films!\n\n(Type "Thank you" to continue!)']
}
},
{
"platform": "FACEBOOK",
"card": {
"buttons": [
{
"text": "Thank you"
}
]
}
}
]
}
Output is this in Dialogflow:
However, the same expected result is never accomplished in Facebook Messenger:
I have found similar questions on SO:
However, none of them solved my issue. Probably because I miss something.