Hi,
When calling ExecuteCursorGETQuery do not specify the cursor in the address, this will be done for you.
If you wish to start from a specific cursor_id then call the method with the extra parameter:
Hope this helps.
Linvi
When calling ExecuteCursorGETQuery do not specify the cursor in the address, this will be done for you.
If you wish to start from a specific cursor_id then call the method with the extra parameter:
var followerQuery = String.Format("https://api.twitter.com/1.1/followers/ids.json?screen_name={0}", screenName); var resultSet = TwitterAccessor.ExecuteCursorGETQuery<IIdsCursorQueryResultDTO>(followerQuery, maxObjectsToRetrieve, 1461847482652938527);
Linvi