Using the last version of the tweetsharp library for the twitter api, i am trying to get all the followers for a specific user. But i can only get the last 100 followers wit
I don't know tweetsharp at all, but based on the following link you could try the following:
var followers = service.ListFollowersOf(user_id); while (followers.NextCursor != null) { followers = service.ListFollowersOf(user_id, followers.NextCursor); }