这是Facebookcallback.php
页面的代码。
现在如何处理 post 方法响应($updates 变量)?
if ($method == 'GET' && $_GET['hub_mode'] == 'subscribe' &&
$_GET['hub_verify_token'] == VERIFY_TOKEN)
{
echo $_GET['hub_challenge'];
}
else if ($method == 'POST') {
$updates = json_decode(file_get_contents("php://input"), true);
//what to do here.
error_log('updates = ' . print_r($updates, true));
}