我实际上是尝试使用Cursor方法检索某个Twitter用户的朋友。因为我想要快,我想一次检索5000。但是,有时迭代器会出现Tweep错误,因为这5000个用户中的一个(至少)受到保护。有办法克服它吗?没有丢失信息,但导致问题的ID?
def getPageFollowers(company):
for page in tweepy.Cursor(api.friends_ids, id = company).pages():
yield page
我在这里称呼它:
id_followers[my_list[i]] += next(followerFollowerIterator)
然后我收到以下错误: TweepError:未经授权。
somoene可以帮助我吗? :)