如何使用流API获取转发列表

时间:2011-08-05 11:24:27

标签: twitter

有没有办法使用流式传输api获取转发器ID列表

REST api有“GET status /:id / retweeted_by / ids”来获取转发者列表

Streaming api有“status / retweet”,但不是一般可用的资源。

因此,我们的想法是使用“状态/过滤器”并根据推文ID进行过滤。

谢谢

1 个答案:

答案 0 :(得分:1)

在流API返回的结果中,转发器(如果有)列在此处:

$retweeters = $tweet->{'retweeted_status'}->{'activities'}->{'retweeters'};

这是一个页面,显示了通过搜索“爱”这个词过滤的流的转发者的ID - 确保使用您的Twitter用户名和密码。请注意,API仅返回前100个转发器。

<html><body>
<?php
    echo(str_pad("START<br>",2048));
    @ob_flush();
    flush();

    $opts = array(
        'http'=>array(
            'method'    =>  "POST",
            'content'   =>  'track=love',
            'header' => "Content-Type: application/x-www-form-urlencoded\r\n"
        )
    );

    $context = stream_context_create($opts);
    $username = 'your_twitter_username';
    $password = 'your_twitter_password';
    while (1){
        $instream = fopen('http://'.$username.':'.$password.'@stream.twitter.com/1/statuses/filter.json','r' ,false, $context);
        while(! feof($instream)) {
            if(! ($line = stream_get_line($instream, 20000, "\n"))) {
                continue;
            }else{
                $tweet = json_decode($line);
                $retweeters = array();
                $retweeters = $tweet->{'retweeted_status'}->{'activities'}->{'retweeters'};

                //We store the new post in the database, to be able to read it later
                if (sizeof($retweeters) > 0) {
                    echo("<br><br>");
                    print_r($retweeters);
                }
                @ob_flush();
                flush();
            }
        }
    }
?>
</html></body>