Messenger Bot中的hub_verify_index和hub_challenge错误

时间:2016-10-26 08:23:59

标签: php facebook facebook-graph-api messenger

我尝试使用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错误结果。 undefine index result image

我不确定这两个"undefined index"问题可能会导致机器人无法回复。

我是否需要将me/messages?$url更改为page id或其他一些ID。

我已经在stackoverflow上阅读了很多关于机器人没有回复问题的帖子,它对我不起作用。我真的不知道哪个部分是错的,因为这是我第一次使用机器人。

我非常感谢任何建议。

1 个答案:

答案 0 :(得分:1)

最后,我找到了解决方案。主要问题是true 问题。不使用var ClearFilterValue = 'family Schools'; alert(ClearFilterValue.indexOf("family") != -1); 证书,即使代码没问题,机器人也不会回复任何内容。我没有SSL。所以,我陷入了奇怪的问题。

所以,现在我使用Heroku上传我的代码存储库,并使用来自SSL的网址重新设置webhooks。使用SSL,您无需担心Heroku。现在,一切都很好。

这个link对创建messenger bot非常有帮助。

我希望我的回答可以为某人提供帮助。