I am trying to run lookup_users on a dataset that contains 8 million Twitter user_ids. However, the Twitter rate limit does not allow me to get the data of more than 90,000 user-ids.
Is there a way to use the lookup_users function for more than the max 90,000 user_ids?
I use the following code but it does not work:
data <- vector("list", length(dataset$user_id)) # my dataset has a column called user_id
for (i in seq_along(dataset)) {
data[[i]] <-
lookup_users(dataset$user_id[i])
Sys.sleep(15*60) #900 seconds or 15 minitues sleep
}