2016-07-06 13 views
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 
+0

お互いに別々のメッセージとして送信しますか?あなたの問題を解決する必要があります。 – AndreasB

答えて

0

いいえ。​​は文字列テキストのみです。参照https://developers.facebook.com/docs/messenger-platform/thread-settings/get-started-button

curl -X POST -H "Content-Type: application/json" -d '{ 
    "setting_type":"call_to_actions", 
    "thread_state":"new_thread", 
    "call_to_actions":[ 
    { 
     "payload":"USER_DEFINED_PAYLOAD" 
    } 
    ] 
}' "https://graph.facebook.com/v2.6/me/thread_settings?access_token=PAGE_ACCESS_TOKEN" 
  • call_to_actionsは、少なくとも 1​​文字列を含まなければならない1 call_to_actionsに限定されています。
  • このデータはwebhook経由でお客様に送信されます。
関連する問題