8
私は、過去3時間の成功を収めずに検索するためにtweepyを取得しようとしてきました。私はそれがAPI 1.1を使用すべきであると答えている。私はそれが実現したと思った...私はtweepyで投稿できるので。私は間違って何をしていますか? githubのから直接インストール、Tweepyを使ってAPI 1.1のつぶやきを検索する
pip install --upgrade 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
あなたが何か間違っていないことを示しているか、あなたが望むものではないことを示すエラー/出力を投稿できますか? –