Pubsubhubbub hub.verify是同步的。 但它告诉我“错误尝试确认订阅”。 这是我的订阅代码:
<?php
if(isset($_GET["hub_challenge"])) {
exit($_GET["hub_challenge"]);;
}
$feeded = $_POST['feed'];
$ch = curl_init("http://pubsubhubbub.appspot.com");
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch,CURLOPT_POSTFIELDS,"hub.mode=subscribe&hub.verify=sync&hub.callback=http://rssreaderbg.net/pubsubbub/example/cssexam/index1.php?url=$feeded&hub.topic=$feeded");
curl_exec($ch);
$conn = mysql_connect("localhost","rssreade_rss","siatsowi");
mysql_select_db("rssreade_rss");
?>
和我的回调代码:
if(isset($_GET["hub_challenge"])) {
file_put_contents("logmeme1.txt",$HTTP_RAW_POST_DATA,FILE_APPEND);
exit($_GET["hub_challenge"]);
}
我的错误在哪里?
答案 0 :(得分:1)
来自the spec:
订户必须确认hub.topic和hub.verify_token对应于它希望执行的待定订阅或取消订阅。如果是这样,用户必须用HTTP成功(2xx)代码响应,响应体等于hub.challenge参数。
您可能需要明确指定2xx标头。这是我使用的工作代码:
if (isset($_GET['hub_challenge'])) {
header('HTTP/1.1 204 "No Content"', true, 204);
echo $_GET['hub_challenge'];
exit;
}