twython get_followers_list can only get 200 followers
问题 Using Twython 3.1.0 trying to get followers of another user. followers = twitter.get_followers_list(screen_name=user, count=500) Even though user has 413 followers, I can only retrieve 200 of them. Then I tried using Twyton's cursor function: followers = twitter.get_followers_list(screen_name=user, count=500, cursor=10) It returns zero users: len(followers(['users'])) = 0 On the bright side, I looked at How to get twitter followers using Twython? and I was able to get all followers id's with