I am using the code below get 5000 follower ids, how would i go about using a courser so that i can get all the follower which dont make the first five thousand list. I dont quite undertand how to use coursers so can i get a better reply then the website URL which expalins it or give me an example of the code below
string timeLineJson = string.Empty;
IAuthenticate authenticate = new Authenticate();
AuthResponse twitAuthResponse = authenticate.AuthenticateMe(AuthenticateSettings);
var url = "https://api.twitter.com/1.1/followers/ids.json?&screen_name=TrangaP&count=5000";
// Do the timeline
var utility = new Utility();
timeLineJson = utility.RequstJson(url, twitAuthResponse.TokenType, twitAuthResponse.AccessToken, "timeline");
dynamic dynObj = JsonConvert.DeserializeObject(timeLineJson);