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.
Last updated:9/3/2013 7:40:53 AM
Sumit Kesarwani
Hi Chintoo,
You have to use NextCursor parameter in ListFollowers() method like this:
var followers = service.ListFollowers(new ListFollowersOptions { Cursor = -1});
Hope this will solve your problem.