我希望能够随时向我的Messenger bot用户发送推送消息。我得到了用户ID,谢谢:
event.sender.id
然后我尝试根据the Messenger doc发送此POST请求。它返回“成功”但我没有收到任何消息。机器人正在开发中。
curl -X POST -H "Content-Type: application/json" -d '{
"recipient": {
"id": "1451521288246029" // this is my sender id
},
"message": {
"text": "hello, world!"
}
}' "https://graph.facebook.com/v2.6/me/messenger_profile?access_token=<TOKEN>"
知道如何发送推送消息吗?
答案 0 :(得分:0)
问题解决了,我正在使用&#34; messenger_profile&#34;端点而不是&#34;消息&#34;之一。