過去 3 時間、sring を検索するために tweepy を取得しようとしましたが、成功しませんでした。API 1.1を使用する必要があるとの回答が続いています。実装されたと思ったら… tweepyで投稿できるから。私は何を間違っていますか?
#!/usr/bin/env python
import tweepy
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)
results = api.search(q="Mice")
for result in results:
print result.text