Hi,
I’m trying to navigate retweeters collection by using the GET statuses/retweeters/ids: https://dev.twitter.com/docs/api/1.1/get/statuses/retweeters/ids
I’ve already read the documentation for Cursoring usage (https://dev.twitter.com/docs/misc/cursoring), but I think I’m missing something.
Example:
Request parameters:
{‘cursor’: -1, ‘id’: ‘374623252179472385’}
Response:
{u’previous_cursor’: 0, u’previous_cursor_str’: u’0’, u’next_cursor’: 0, u’ids’: [1695703046 … 1418422555], u’next_cursor_str’: u’0’}
(I shortened the “ids” list)
The same happens if cursor is missing.
Since there are lots of retweeters, I expected a “next_cursor” value to iterate the collection.
Can anybody help me?