1

这是我的代码:- 我已经仔细检查了所有的身份验证参数。

import tweepy


CONSUMER_KEY ='#Omitted - you should not publish your actual key'
CONSUMER_SECRET ='#Omitted - you should not publish your actual secret'
ACCESS_KEY='#Omitted - you should not publish your access key'
ACCESS_SECRET = '#Omitted - you should not publish your access secret'

auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
api = tweepy.API(auth)

api.update_status('Tweeting from command line')

运行 python status.py 后,将主文件夹中的文件另存为 status.py,出现以下错误:-

Traceback (most recent call last):
  File "status.py", line 14, in <module>
    api.update_status('Tweeting from command line')
  File "/usr/local/lib/python2.7/dist-packages/tweepy-1.10-py2.7.egg/tweepy/binder.py", line 185, in _call
    return method.execute()
  File "/usr/local/lib/python2.7/dist-packages/tweepy-1.10-py2.7.egg/tweepy/binder.py", line 168, in execute
    raise TweepError(error_msg, resp)
tweepy.error.TweepError: Could not authenticate with OAuth.

请帮帮我

4

3 回答 3

3

我在相同条件下收到此错误 - 使用 tweepy,我的所有密钥/秘密都被正确复制和粘贴。问题是我服务器上的时间。运行后,ntpdate -b pool.ntp.org我使用 tweepy 就好了。

于 2013-04-27T22:29:46.663 回答
0

我可以使用 tweepy 进行身份验证,但我的代码中有一行额外的代码,它可能有助于您将代码更改为:

import tweepy
from tweepy import OAuthHandler

然后继续你的其余代码。还要在代码中添加一行以打印到 shell 以显示您的连接,如下所示:

print api.me().name

确保你在上面看到的那行就在后面api = tweepy.API(auth)

于 2012-07-22T14:30:54.093 回答
0

试试api.update_status(status='Tweeting from command line')。它帮助了我。

于 2015-08-02T21:31:30.423 回答