7

当我尝试使用 tweepy 进行 Twitter 身份验证时,出现以下错误。

  File "/usr/local/lib/python2.7/dist-packages/tweepy/models.py", line 146, in followers
    return self._api.followers(user_id=self.id, **kargs)
  File "/usr/local/lib/python2.7/dist-packages/tweepy/binder.py", line 197, in _call
    return method.execute()
  File "/usr/local/lib/python2.7/dist-packages/tweepy/binder.py", line 173, in execute
    raise TweepError(error_msg, resp)
tweepy.error.TweepError: Not authorized.

我不是在构建网络应用程序。因此,身份验证更简单。

consumer_key="----------"
consumer_secret="----------"
access_token="--------------"
access_token_secret="-----------------"

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)

api = tweepy.API(auth)

api.get_user('---').followers()
4

2 回答 2

18

固定的。特定用户拥有受保护的推文。因此, .followers() 失败了。

于 2013-10-23T22:04:36.187 回答
8

我有一个for循环通过我的追随者,以吸引他们的所有追随者。我因同样的错误而崩溃。我的解决方法是:

try:
    api.get_user('---').followers()
    ...
except tweepy.TweepError:
    print("Failed to run the command on that user, Skipping...")

虽然它让你错过了一些用户。我的循环已成功完成并获得了大约 99% 的关注者。因此,用户保护推文可能真的很少见。

于 2016-04-07T13:20:23.890 回答