我尝试使用PHP构建messenger bot,方法是遵循以下两个指南:http://blog.adnansiddiqi.me/develop-your-first-facebook-messenger-bot-in-php/和https://medium.com/@nadeem.manzoor0/facebook-messenger-platform-web-hook-setup-in-php-893ead06746b#.lcpp0jh9o。
我使用nGrok v2.1.18
来处理来自messenger bot的localhost
代码。在我的localhost
中,我已经安装了xampp control panel v3.2.1
。
这是我的webhook.php
:
<?php
/* validate verify token needed for setting up web hook */
if (isset($_GET['hub_verify_token'])) {
if ($_GET['hub_verify_token'] === 'here_is_my_token') {
echo $_GET['hub_challenge'];
return;
} else {
echo 'Invalid Verify Token';
return;
}
} else {
echo $_GET['hub_verify_token'];
echo $_GET['hub_challenge'];
}
$input = json_decode(file_get_contents('php://input'), true);
$sender = $input['entry'][0]['messaging'][0]['sender']['id'];
$message = $input['entry'][0]['messaging'][0]['message']['text'];
/**
* Some Basic rules to validate incoming messages
*/
if(preg_match('[time|current time|now]', strtolower($message))) {
// Make request to Time API
ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 6.0)');
$result = file_get_contents("http://www.timeapi.org/utc/now?format=%25a%20%25b%20%25d%20%25I:%25M:%25S%20%25Y");
if($result != '') {
$message_to_reply = $result;
}
} else {
$message_to_reply = 'Huh! what do you mean?';
}
print $message_to_reply;
//API Url
$url = 'https://graph.facebook.com/v2.6/me/messages?access_token=<my-token>';
//Initiate cURL.
$ch = curl_init($url);
//The JSON data.
$jsonData = '{
"recipient":{
"id":"'.$sender.'"
},
"message":{
"text":"'.$message_to_reply.'"
}
}';
//Encode the array into JSON.
$jsonDataEncoded = $jsonData;
//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, $jsonDataEncoded);
//Set the content type to application/json
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
//curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
//Execute the request
if(!empty($input['entry'][0]['messaging'][0]['message'])){
$result = curl_exec($ch);
}
?>
我已经在我的Facebook应用页面中设置了webhooks网址:https://903....ngrok.io/FunBot/webhook.php
并设置了验证令牌。没问题。
当我从我的页面发送消息时,我可以在nGrok
中看到200 OK
的回复。但在messeger机器人中,它没有回复任何东西。
所以,我尝试从json_decode(file_get_contents('php://input'), true)
登录,没有错误。
但是当我尝试打印"Undefined index: hub_challenge in C:\xampp\htdocs\FunBot\webhook.php on line ....."
和"Undefined index: hub_verify_token in ......."
时出现$_GET['hub_verify_token']
和$_GET['hub_challenge']
错误。
以下是undefined index
上的nGrok
错误结果。
我不确定这两个"undefined index"
问题可能会导致机器人无法回复。
我是否需要将me/messages?
从$url
更改为page id
或其他一些ID。
我已经在stackoverflow
上阅读了很多关于机器人没有回复问题的帖子,它对我不起作用。我真的不知道哪个部分是错的,因为这是我第一次使用机器人。
我非常感谢任何建议。
答案 0 :(得分:1)