我正在制作一个FB messenger机器人。我无法让机器人发送消息重新开始工作。
我正在使用Heroku作为Webhook。
我正在关注本教程:https://www.youtube.com/watch?v=__SWFhHocDI
这是我的代码(我更改了令牌变量,我确实使用了真正的令牌):
file_put_contents('fb.txt', file_get_contents('php://input'));
$fb = file_get_contents('fb.txt');
$fb = json_decode($fb);
$rid = $fb->entry[0]->messaging[0]->sender->id;
$token = "MYTOKEN";
$data = array(
'recipient' => array('id'=>"$rid"),
'message' => array('text'=>"Nice to meet you!")
);
$options = array(
'http' => array(
'method' => 'POST',
'content' => json_encode($data),
'header' => "Content-Type: application/json\n"
)
);
$context = stream_context_create($options);
file_get_contents("https://graph.facebook.com/v2.8/me/subscribed_apps?access_token=$token", false, $context);
你能找到任何问题吗? :-)感谢您抽出宝贵时间。
答案 0 :(得分:0)
也许你应该尝试这样的事情 -
file_get_contents("https://graph.facebook.com/v2.6/me/messages?access_token=$token", false, $context);