8

在过去的 3 个小时里,我一直在努力寻找一个没有成功的 sring。我不断收到回复,它应该使用 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
4

1 回答 1

6

升级你的tweepy版本:

pip install --upgrade tweepy

或者,直接从 github 安装:

git clone https://github.com/tweepy/tweepy.git
cd tweepy
python setup.py install

仅供参考,使用版本测试您的代码2.1- 它有效。

于 2013-09-02T20:38:38.303 回答