I am developing a demo application using TweetSharp Library and i want all followers of my users.
I'm using ListFollowers() method of TweetSharp library but it gives only 20 followers.
Help please.
Thanks in advance.
Home / DeveloperSection / Forums / How to get all followers from ListFollowers() method of TweetSharp Library ?
I am developing a demo application using TweetSharp Library and i want all followers of my users.
I'm using ListFollowers() method of TweetSharp library but it gives only 20 followers.
Help please.
Thanks in advance.
Sumit Kesarwani
03-Sep-2013You have to use NextCursor parameter in ListFollowers() method like this:
var followers = service.ListFollowers(new ListFollowersOptions { Cursor = -1});
Hope this will solve your problem.