Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 TweetSharp 库和 wpf 开发一个演示应用程序,我想要我的用户的所有关注者。
我正在使用 TweetSharp 库的 ListFollowers() 方法,但它只提供 20 个关注者。
请帮忙。
提前致谢。
您必须在 ListFollowers() 方法中使用 NextCursor 参数,如下所示:
var follower = service.ListFollowers(new ListFollowersOptions { Cursor = -1});
而 (followers.NextCursor != null)
{
追随者 = service.ListFollowers(新 ListFollowersOptions { follower.NextCursor });
//你的代码在这里。
}
希望这能解决您的问题。