Hi,
Yes the query is a cursor query. A cursor query can be called multiple times to enumerate all the results.
https://dev.twitter.com/rest/reference/get/statuses/retweeters/ids
This code should get you all the ids from the cursor query.
Cheers,
Linvi
Yes the query is a cursor query. A cursor query can be called multiple times to enumerate all the results.
https://dev.twitter.com/rest/reference/get/statuses/retweeters/ids
var query = string.Format("https://api.twitter.com/1.1/statuses/retweeters/ids.json?id={0}", tweetId); var result = TwitterAccessor.ExecuteCursorGETQuery<long, IIdsCursorQueryResultDTO>(query);
Cheers,
Linvi