使用 twython 我正在尝试检索具有超过 40k 追随者的特定 id 的所有追随者的列表。但是我遇到了以下错误“Twitter API 返回了 429(请求太多)超出了速率限制。如何解决这个问题?
下面是片段,我正在打印用户名和时区信息。
下一个光标 = -1
while(next_cursor):
search = twitter.get_followers_list(screen_name='ndtvgadgets',cursor=next_cursor)
for result in search['users']:
time_zone =result['time_zone'] if result['time_zone'] != None else "N/A"
print result["name"].encode('utf-8')+ ' '+time_zone.encode('utf-8')
next_cursor = search["next_cursor"]