Hello. I am using the Twitter API usefully.
But there is one problem.
In the “statuses / retweeters / ids.json” API, the cursor parameter does not work.
I think it’s the official API issue, but I do not know the exact cause.
There are more than 100 Retweet, but only fewer than 100 user_ids are returned.
Here is the URL I called:
https://api.twitter.com/1.1/statuses/retweeters/ids.json?id=1023756525561511936&count=100&stringify_ids=1&cursor=-1
And this is the URL of the actual tweet.
It has more than 300 Retweet, but next_cursor is always zero.
"next_cursor": 0,
"next_cursor_str": "0",
"previous_cursor": 0,
"previous_cursor_str": "0"
Using the id of another user’s tweets with more than 500 Retweet results is the same.
I can not get next_cursor.
What is the problem?
ps.
I am also using the following API, but the following URL call returns the cursor normally.
https://api.twitter.com/1.1/followers/ids.json?cursor=-1&screen_name=chogoons&count=100