1

我的代码如下

import tweepy

CONSUMER_KEY = 'my_consumer_key'
CONSUMER_SECRET = 'my_consumer_secret'

auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth_url = auth.get_authorization_url()
print 'Please authorize: ' + auth_url
verifier = raw_input('PIN: ').strip()
auth.get_access_token(verifier)
print "ACCESS_KEY = '%s'" % auth.access_token.key
print "ACCESS_SECRET = '%s'" % auth.access_token.secret

当我在终端中运行此脚本时,出现以下错误:

Traceback (most recent call last):
  File "Twitter_OAuth.py", line 8, in <module>
    auth_url = auth.get_authorization_url()
  File "/usr/lib/python2.7/dist-packages/tweepy/auth.py", line 103, in get_authorization_url
    raise TweepError(e)
tweepy.error.TweepError: HTTP Error 401: Unauthorized

我在网上搜索,我认为这与服务器时间有关。但我似乎无法解决它。

我正在使用 Ubuntu 12.10

帮助!

4

2 回答 2

0

我认为您的代码没有任何问题。如您所说,请确保您的服务器时间接近实际时间。您可以为此使用 NTP 守护程序,但它应该预先安装在 Ubuntu 上。

此错误的另一个原因可能只是您的令牌中的拼写错误。

于 2013-05-22T08:43:44.037 回答
0

oauth_verifier 已被强制执行。当您获得访问令牌时,您应该通过它。

-维杰

于 2013-05-28T05:34:24.773 回答