My interesting user got 220,000 followers.
I'll to list all of them but I can list only 75,000 ids per rate limit.
Can you guide me how to list 75,001 and so on ?
I don't know how to get the current cursor and use it.
here is my code :
I'll to list all of them but I can list only 75,000 ids per rate limit.
Can you guide me how to list 75,001 and so on ?
I don't know how to get the current cursor and use it.
here is my code :
TwitterCredentials.ExecuteOperationWithCredentials(credential, () =>
{
var followerQuery = String.Format("https://api.twitter.com/1.1/followers/ids.json?user_id={0}", 111111111);
var returnedIds = TwitterAccessor.ExecuteCursorGETQuery<IIdsCursorQueryResultDTO>(followerQuery, 220000)
.SelectMany(x => x.Ids); }
Thank you in advance.