使用twitterizer获取所有Twitter粉丝

时间:2010-08-18 14:18:19

标签: twitter twitterizer

我正在使用Twitterizer 2.一般来说它的工作做得很好,但我有一件事情不见了 我需要得到我的用户的所有关注者。并且方法带来Twitterizer.TwitterFriendship.Followers(Token)只带来100个 在twitter API中,我看到你可以使用游标来“请求”“分页”,但我在twitterizer中找不到这个功能。
任何想法有人吗?

1 个答案:

答案 0 :(得分:3)

TwitterUserCollection类(由Followers方法返回)具有NextPage()和PreviousPage()方法,它们将为您执行分页。

例如,要获得所有关注者,您可以执行以下操作:

TwitterUserCollection myFollowers = TwitterFriendship.Followers(token);

while (myFollowers != null)
{
    // Do something with the users here

    // Get the next page
    myFollowers = myFollowers.NextPage();
}

如果您还有其他问题,请在我们的论坛中发帖:http://forums.twitterizer.net/