0
Facebookメッセンジャーボットウェルカムメッセージですばやく返信しますか?これは "Get Started"ボタンを押した後に表示されるメッセージです。クイック返信を実行するMessengerで動作するBot Welcome Message?
サポートされていない可能性がありますが、そうであれば間違っていますか?
は、ここで私がしようとしているものです:
curl -X POST -H "Content-Type: application/json" -d '{
"setting_type":"call_to_actions",
"thread_state":"new_thread",
"call_to_actions":[
{
"message": {
"attachment": {
"type": "template",
"payload": {
"template_type": "generic",
"elements": [{
"title": "Hi dad",
"subtitle": "Hi mom",
"item_url": "www.google.com",
"image_url": "https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png",
}]
}
}
},
"quick_replies":[
{
"content_type":"text",
"title":"option1",
"payload":"option1payload"
},
{
"content_type":"text",
"title":"option2",
"payload":"option2payload"
}
]
}
]
}' "https://graph.facebook.com/v2.6/13333333337/thread_settings?access_token=THISISMYCOOLTOKEN"
私が受けてるのエラーは次のとおりです。
Invalid Keys \"message, quick_replies\" were found in param \"call_to_actions[0]\"."type":"OAuthException","code":100
お互いに別々のメッセージとして送信しますか?あなたの問題を解決する必要があります。 – AndreasB