0

新しい API Twitter (v 1.1) を使用してハッシュタグの検索を行っていますが、いくつかの結果で機能します。ただし、古いツイートの場合は結果が返されません。

私のコード:

    $this->load->library("TwitterAPIExchange", $settings);

    /** Perform the request and echo the response **/
    $twitter = new TwitterAPIExchange($settings);

    /** URL for REST request, see: https://dev.twitter.com/docs/api/1.1/ **/
    $url = "https://api.twitter.com/1.1/search/tweets.json";
    $requestMethod = "GET";

    //hashtag
    $hashtag = "#vmb2012";
    //Method search parameters GET
    $getfield = "?q=$hashtag&result_type=mixed&count=100";
    //Counter tweets
    $count = 0;

    /** Search global tweets for a hashtag **/
    $result = json_decode( $twitter->setGetfield($getfield)->buildOauth($url, $requestMethod)->performRequest() );      

    if(!empty($result))
    {
        //increases the qty of tweets
        $count = isset($result->statuses) ? count($result->statuses) : 0;

        //if you have more results, performs the query again                                
        while($result->search_metadata && isset($result->search_metadata->next_results))
        {
            //search parameters of the next result
            $getfield = $result->search_metadata->next_results;
            $result = json_decode( $twitter->setGetfield($getfield)->buildOauth($url, $requestMethod)->performRequest() );
            $count += count($result->statuses);             
        }                   
    }

    echo "Hashtag: ".$hashtag." <br>";
    echo "Counter: ".$count;

誰でも私を助けることができますか?

4

1 に答える 1

2

dev.twitter.comより

Twitter の検索サービス、ひいては Search API は、ツイートの完全なソースになることを意図していないことに注意してください。すべてのツイートがインデックスに登録されたり、検索インターフェイスで利用できるようになるわけではありません

これがお役に立てば幸いです

于 2013-08-13T21:54:46.183 に答える