2013-07-08 88 views
0

我對Twitter API相當陌生。我更新了Tweepy。我不知道什麼是錯用此代碼,如何解決它,使之成爲Twitter的API的新版本的工作:遷移到Twitter API版本1.1(?)[重複]

import oauth, tweepy 
from time import sleep 

#stars is confident information 
username = "*******" 
password = "***********" 
auth = tweepy.BasicAuthHandler(username, password) 
api = tweepy.API(auth) 

api.update_status('hello from tweepy!') 

終端顯示我:

$ python py/twi.py 
Traceback (most recent call last): 
    File "py/twi.py", line 11, in <module> 
    api.update_status('hello from tweepy!') 
    File "/usr/lib/python2.7/dist-packages/tweepy/binder.py", line 179, in _call 
    return method.execute() 
    File "/usr/lib/python2.7/dist-packages/tweepy/binder.py", line 162, in execute 
    raise TweepError(error_msg, resp) 
tweepy.error.TweepError: [{'message': 'The Twitter REST API v1 is no longer active. Please migrate to  API v1.1. https://dev.twitter.com/docs/api/1.1/overview.', 'code': 68}] 

請幫助。

回答

0

根據this google groups post,tweepy應該支持1.1 API。您的錯誤消息報告說,tweepy正在嘗試使用1.0 API。我懷疑你的更新失敗了。嘗試卸載並重新安裝tweepy。你使用的是什麼版本的tweepy? tweepy.__version__應該是2.0

0

您正在使用帶有用戶名和密碼的基本身份驗證。但是,Twitter API 1.1僅支持OAuth。這裏是你如何通過OAuth和Tweepy驗證:

auth = tweepy.OAuthHandler(consumer_key, consumer_secret) 
auth.set_access_token(key, secret) 

根據this page