如何使用新的API 1.1获取Twitter粉丝的完整列表

时间:2013-07-02 04:25:31

标签: php twitter twitter-oauth

我正在使用此https://api.twitter.com/1.1/followers/ids.json?cursor=-1&screen_name=sitestreams&count=5000列出Twitter粉丝列表,但我只列出了200个关注者。如何使用新的API 1.1增加Twitter粉丝列表?

2 个答案:

答案 0 :(得分:5)

您必须先设置应用程序

<?php
$consumerKey = 'Consumer-Key';
$consumerSecret = 'Consumer-Secret';
$oAuthToken = 'OAuthToken';
$oAuthSecret = 'OAuth Secret';

# API OAuth
require_once('twitteroauth.php');

$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);

您可以从这里下载twitteroauth.php:https://github.com/elpeter/pv-auto-tweets/blob/master/twitteroauth.php

然后

您可以像这样检索您的粉丝:

$tweet->get('followers/ids', array('screen_name' => 'YOUR-SCREEN-NAME-USER'));

如果要检索下一组5000个粉丝,则必须在第一次调用时添加光标值。

$tweet->get('followers/ids', array('screen_name' => 'YOUR-SCREEN-NAME-USER', 'cursor' => 9999999999));

您可以阅读:使用游标在此链接中导航集合:https://dev.twitter.com/docs/misc/cursoring

答案 1 :(得分:0)

以下是我在平台上运行/更新完整的关注者ID列表的方法。我会避免像@aphoe脚本那样使用sleep()。保持连接打开的时间真的很糟糕 - 如果您的用户有1MILL粉丝会怎么样?你打算将这个连接打开一个星期?大声笑如果必须,运行cron或保存到redis / memcache。冲洗并重复,直到获得所有粉丝。

注意,下面的代码是每分钟运行一次cron命令的类。我正在使用Laravel 5.1。所以你可能会忽略很多这样的代码,因为它对我的平台来说是独一无二的。例如TwitterOAuth(获取我在db上获得的所有oAuth),TwitterFollowerList是另一个表,我检查条目是否已经存在,TwitterFollowersDaily是我存储/更新总数的另一个表用户当天的金额,TwitterApiAbraham\TwitterOAuth个套餐。你可以使用任何库。

这可能会让你很好地了解你可能会做同样的事情,甚至可以找到更好的方法。我不会解释所有的代码,因为有很多事情发生,但你应该能够引导它。如果您有任何问题,请告诉我。

/**
 * Update follower list for each oAuth
 *
 * @return response
 */
public function updateFollowers()
{
    TwitterOAuth::chunk(200, function ($oauths) 
    {
        foreach ($oauths as $oauth)
        {
            $page_id = $oauth->page_id;
            $follower_list = TwitterFollowerList::where('page_id', $page_id)->first();

            if (!$follower_list || $follower_list->updated_at < Carbon::now()->subMinutes(15))
            {
                $next_cursor = isset($follower_list->next_cursor) ? $follower_list->next_cursor : -1;
                $ids = isset($follower_list->follower_ids) ?  $follower_list->follower_ids : [];

                $twitter = new TwitterApi($oauth->oauth_token, $oauth->oauth_token_secret);
                $results = $twitter->get("followers/ids", ["user_id" => $page_id, "cursor" => $next_cursor]);

                if (isset($results->errors)) continue;

                $ids = $results->ids; 

                if ($results->next_cursor !== 0)
                {
                    $ticks = 0;

                    do 
                    {
                        if ($ticks === 13) 
                        {
                            $ticks = 0;
                            break;
                        }

                        $ticks++;

                        $results = $twitter->get("followers/ids", ["user_id" => $page_id, "cursor" => $results->next_cursor]);
                        if (!$results) break;

                        $more_ids = $results->ids;
                        $ids = array_merge($ids, $more_ids);
                    }
                    while ($results->next_cursor > 0);
                }

                $stats = [
                    'page_id' => $page_id,
                    'follower_count' => count($ids),
                    'follower_ids' => $ids,
                    'next_cursor' => ($results->next_cursor > 0) ? $results->next_cursor : null,
                    'updated_at' => Carbon::now()
                ];

                TwitterFollowerList::updateOrCreate(['page_id' => $page_id], $stats);

                TwitterFollowersDaily::updateOrCreate([
                        'page_id' => $page_id, 
                        'date' => Carbon::now()->toDateString()
                    ],
                    [
                        'page_id' => $page_id,
                        'date' => Carbon::now()->toDateString(),
                        'follower_count' => count($ids),
                    ]
                );
                continue;
            }
        }
    });
}