0

最初のコード:

if(isset($_GET["hub_challenge"])) {
    echo $_GET["hub_challenge"];

    }
    else {

    }
    $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=async&hub.callback=http://rssreaderbg.net/pubsubbub/example/index.php?url=$feeded&hub.topic=$feeded");
    curl_exec($ch);

コールバック コード:

file_put_contents("logmeme.txt",$HTTP_RAW_POST_DATA,FILE_APPEND);

https://pubsubhubbub.appspot.com/topic-details?hub.url=http%3A%2F%2Frssreaderbg.net%2Fblog%2F%3Ffeed%3Drss2

https://pubsubhubbub.appspot.com/subscription-details?hub.callback=http%3A%2F%2Frssreaderbg.net%2Fpubsubbub%2Fexample%2Findex.php&hub.topic=http%3A%2F%2Frssreaderbg.net%2Fblog% 2F%3Ffeed%3Drss2&hub.secret=

コールバック URL に到達できませんか?

4

1 に答える 1

0

チャレンジをエコーする前に、ヘッダーを明示的に 2xx に設定してみてください。

header('HTTP/1.1 204 "No Content"', true, 204);
于 2011-07-30T00:29:59.723 に答える