PHP中的Messenger Bot:没有回复

时间:2016-04-15 21:46:59

标签: php facebook-chatbot

我正在尝试用PHP构建一个测试信使机器人。我的Web挂钩完美设置,甚至页面订阅也正确完成。但是,我的机器人不响应信使中的任何文本。我试图更改应用ID,页面ID,以确保是否存在任何问题。我也尝试了各种方法,包括基本卷曲,如下所述: Facebook Chat bot (PHP webhook) sending multiple replies

并尝试了2个不同的php库: https://github.com/Fritak/messenger-platform https://github.com/pimax/fb-messenger-php

我没有PHP错误,Facebook的挑战仍然是成功的。我的SSL证书很好,但我无法让机器人响应。

对此的任何帮助将不胜感激。

5 个答案:

答案 0 :(得分:1)

检查CURL是否安装正确。试试这个简单的要点,https://gist.github.com/visitdigital/58c71acb123870d1ac2ec714d7536587

$challenge = $_REQUEST['hub_challenge'];
$verify_token = $_REQUEST['hub_verify_token'];

// Set this Verify Token Value on your Facebook App 
if ($verify_token === 'YOURVERIFYTOKEN') {
  echo $challenge;
}

$input = json_decode(file_get_contents('php://input'), true);

// Get the Senders Graph ID
$sender = $input['entry'][0]['messaging'][0]['sender']['id'];

// Get the returned message
$message = $input['entry'][0]['messaging'][0]['message']['text'];

//API Url and Access Token, generate this token value on your Facebook App Page

$url = 'https://graph.facebook.com/v2.6/me/messages?access_token=ACCESSTOKEN';
//Initiate cURL.
$ch = curl_init($url);
//The JSON data.
$jsonData = '{
    "recipient":{
        "id":"' . $sender . '"
    }, 
    "message":{
        "text":"The message you want to return"
    }
}';

//Tell cURL that we want to send a POST request.
curl_setopt($ch, CURLOPT_POST, 1);

//Attach our encoded JSON string to the POST fields.
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonData);

//Set the content type to application/json
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));

//Execute the request but first check if the message is not empty.
if(!empty($input['entry'][0]['messaging'][0]['message'])){
  $result = curl_exec($ch);
}

答案 1 :(得分:0)

您需要在收到消息时自行发送回复(请参阅documentation)。

我不知道你是如何为pimax API做的那样,抱歉,但对my API你可以这样做:

// Messenger is calling your URL, someone is sending a message...
$messages = $bot->getMessagesReceived();

// Now you need an ID
$userToSendMessage = $messages[0]->messaging[0]->sender->id;

// Send answer
$bot->sendMessage($userToSendMessage, 'Hi!');

答案 2 :(得分:0)

你可以查看下面的内容。

  1. 您是该页面的管理员,并且您只是从管理员帐户发送消息。
  2. 您是否正在接收脚本上发送的消息,请将这些消息记录在某个文件中以进行检查?
  3. 在您的网页帐户上,fb会给您一些警告,就像您的网页没有收到消息一样。 如果没有,那么msg被成功发送给你的问题在于你的回复。
  4. 确保放置创建webhook时创建的令牌是正确的。
  5. 您是否复制了生成的令牌。
  6. 也请发送您的代码。

答案 3 :(得分:0)

我遇到了同样的问题,答案是我的网络服务器正在重定向请求(在网址的末尾添加斜杠)。

答案 4 :(得分:0)

1 - 确认cURL已正确安装在您的计算机中 2 - 尝试使用以下代码在终端中手动发送,确保放置访问令牌和收件人ID。 我和你一样有同样的问题。尽管我在我的计算机(Windows)中安装了cURL,但它不会发送请求。当我改为linux时它运行得很好。
试试看。

curl -X POST -H "Content-Type: application/json" -d '{
  "recipient": {
    "id": "USER_ID"
  },
  "message": {
    "text": "hello, world!"
  }
}' "https://graph.facebook.com/v2.6/me/messages?access_token=PAGE_ACCESS_TOKEN"