0

私はTwitter APIを初めて使用します。Tweepy を更新しました。このコードの何が問題なのか、新しいバージョンの Twitter API で機能するように修正する方法がわかりません。

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}]

助けてください。

4

2 に答える 2

0

ユーザー名とパスワードによる基本認証を使用しています。ただし、Twitter API 1.1 は OAuth のみをサポートします。OAuth と Tweepy で認証する方法は次のとおりです。

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

このページによると。

于 2013-07-08T19:56:01.330 に答える