使用 twitterizer 获取所有 Twitter 关注者
我正在使用 Twitterizer 2。总的来说,它的工作效果非常好,但我缺少一件事。
我需要获得我的用户的所有关注者。并且该方法带来的 Twitterizer.TwitterFriendship.Followers(Token)
只带来了其中的 100 个。
在 twitter API 中,我看到您可以使用光标来“分页”您请求的内容,但我在 twitterizer 中找不到此功能。
有人有什么想法吗?
I am using Twitterizer 2. in general it does the job very well, but I have one thing missing.
I need to get all the followers of my user. and the method brings Twitterizer.TwitterFriendship.Followers(Token)
only brings 100 of them.
in the twitter API I saw that you can use a cursor for "paging" you request, but I couldn't find this functionality in twitterizer.
Any Idea anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TwitterUserCollection 类(由 Followers 方法返回)具有 NextPage() 和 PreviousPage() 方法,可以为您执行分页。
例如,要获取所有关注者,您可以执行以下操作:
如果您有其他问题,请将其发布在我们的论坛中:http://forums.twitterizer.net/
The TwitterUserCollection class (that is returned by the Followers method) have NextPage() and PreviousPage() methods that will perform the paging for you.
For example, to get all of your followers, you can perform this:
If you have additional questions, please post them in our forums: http://forums.twitterizer.net/