Replies: 1 comment 3 replies
-
While the first cursor will be https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-list The |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey all, I'm trying to split my requests for specific pages of the
get_followers
. I thought I could maybe use a Cursor manually to get specific pages, but I really haven't been able to figure out.Let's say someone has 1000 followers. I'm splitting the jobs into 5 consecutive calls of:
So, I sort of expected the following to work:
This way, if any individual job fails, I can pick up where I left off, and I can handle the rate limiting myself with job scheduling.
How can I get a specific page of 200 results from an API call?
Beta Was this translation helpful? Give feedback.
All reactions