Hello,
When I collect the ID’s of user, I can get the IDs of 5,000 of their followers. However, even when I call the function over and over again, I still get the IDs of the same 5,000 followers. I’m wondering how may I get the IDs of all their users?
For example;
from twython import Twython
twitter = Twython()
followers = twitter.get_followers_ids(screen_name = "someone")
This code will only return 5,000 of the same followers.