I'm trying to get all user data for the followers of an account, but am running into an issue with the 90,000 user lookup limit. The documentation page says that that can be done by iterating through the user IDs while avoiding the rate limit that has a 15 minute reset time, but doesn't really give any guidance on how to do this. How would a complete user lookup with a list of users that is greater than 90,000 be achieved?
I'm using the rtweet package. Below is an an attempt with @lisamurkowski who has 266,000 followers. i have tried using a retryonratelimit = TRUE argument to lookup_users(), but that doesn't do anything.
lisa <- lookup_users("lisamurkowski")
mc_flw <- get_followers("lisamurkowski", n = lisa$followers_count,
retryonratelimit = TRUE)
mc_flw_users <- lookup_users(mc_flw$user_id)
The expected output would be a tibble of all the user lookups, but instead I get
max number of users exceeded; looking up first 90,000
And then the outputted object contains 90,000 observations and ends the process.