Using TwitterOauth, I am trying to get a list of followers of an account with a large list of followers. As the API returns no more than 5000 users per request, following the advice of other answers, try to use cursors, but now I run into the problem that I can only do "15 requests per window", so I can only get the latest ones 70,000 followers I thought about saving the cursor and making calls 15 minutes later, but the API returns the most recent follower first, so saving the cursor makes it inaccurate. What can I do to return a list of followers when it is larger than 70,000?