Weird error with Facebook Messenger Platform/bot Welcome Confugration

后端 未结 4 1850
孤独总比滥情好
孤独总比滥情好 2021-02-05 10:35

I\'m getting a weird error while configuring welcome message for my Messenger bot. I\'ve been using the same code (as shown below) and it has just been working fine until last n

4条回答
  •  执笔经年
    2021-02-05 10:45

    Docs updated:

    https://developers.facebook.com/docs/messenger-platform/thread-settings/greeting-text

    Example:

    curl -X POST -H "Content-Type: application/json" -d '{
      "setting_type":"greeting",
      "greeting":{
        "text":"Welcome to My Company!"
      }
    }' "https://graph.facebook.com/v2.6/me/thread_settings?access_token=PAGE_ACCESS_TOKEN"
    

提交回复
热议问题