0

PHP で PubSubHubbub を使用して Superfeedr API を統合したいと考えています。私はこれに従っており、私のコードは次のとおりです。

<?php

 require_once('Superfeedr.class.php')
 $superfeedr = new Superfeedr('http://push-pub.appspot.com/feed', 
                            'http://mycallback.tld/push?feed=http%3A%2F%2Fpush-pub.appspot.com%2Ffeed',
                            'http://wallabee.superfeedr.com');

 $superfeedr->verbose = true;
 $superfeedr->subscribe();
?>

そして、私のsubscribe()関数は

public function subscribe()
{
    $this->request('subscribe');
}

private function request($mode)
{
    $data = array();
    $data['topic'] = $this->topic;
    $data['callback'] = $this->callback;

    $post_data = array ( 
            "hub.mode" => 'subscribe', 
            "hub.verify" => "sync", 
            "hub.callback" => urlencode($this->callback), 
            "hub.topic" => urlencode($this->topic),
            "hub.verify_token" => "26550615cbbed86df28847cec06d3769",
    ); 
//echo "<pre>"; print_r($post_data); exit;

    // url-ify the data for the POST 
    foreach ($post_data as $key=>$value) { 
        $post_data_string .= $key.'='. $value.'&'; 
    } 
    rtrim($fields_string,'&'); 

    // curl request
    $ch = curl_init(); 

    curl_setopt($ch, CURLOPT_URL, $this->hub); 
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 
    curl_setopt($ch, CURLOPT_POST, true); 
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data_string); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
    curl_setopt($ch, CURLOPT_HEADER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: application/json'));
    curl_setopt($ch, CURLOPT_USERPWD, 'USERNAME:PASSWORD');
    $output = curl_exec($ch);


    if ($this->verbose) {
        print('<pre>'); 
        print_r($output); 
        print('</pre>');
    }   
}   

しかし、実行後、このエラーが発生します

HTTP/1.1 422 Unprocessable Entity
X-Powered-By: The force, Luke
Vary: X-HTTP-Method-Override, Accept-Encoding
Content-Type: text/plain; charset=utf-8
X-Superfeedr-Host: supernoder16.superfeedr.com
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
Access-Control-Allow-Methods: GET, POST, PUT, DELETE
Access-Control-Allow-Headers: Authorization
Content-Length: 97
ETag: W/"61-db6269b5"
Date: Wed, 24 Aug 2016 14:01:47 GMT
Connection: close

Please provide a valid hub.topic (feed) URL that is accepted on this hub. The hub does not match.

https://superfeedr.com/users/testdata/push_consoleからの同じデータ (トピックやコールバックなど) のリクエスト は正常に機能しています。しかし、ローカルでこのエラーが発生する理由がわかりません。誰かが同じ問題を経験したことがあるなら、私を助けてください。ありがとう。

4

1 に答える 1

0

奇妙なハブ URL を使用しています。HTTPS://push.superfeedr.comクラスコンストラクターの最後のパラメーターで使用する必要があります。

于 2016-08-24T17:38:02.927 に答える