安装 OSX 10.7.4、Eclipse、Pydev、Python 2.7、Tweepy-1.9
嘿,我最初试图从 twitter API 中获取推文,但一直收到与下面相同的错误。该程序旨在打印 twitter API 速率限制,以确保我不会被超越。
我不断收到这个错误,但网上关于它的信息很少。
任何帮助表示赞赏。
编码
import tweepy
auth = tweepy.OAuthHandler(Consumer Key, Consumer Secret)
auth.set_access_token(Access token,Access token secret)
api = tweepy.API(auth)
print api.rate_limit_status()
#print tweepy.api.rate_limit_status()
错误
Traceback (most recent call last):
File "/Users/brendan/Documents/workspace/Euro2012/src/rate_limit.py", line 7, in <module>
print api.rate_limit_status()
File "build/bdist.macosx-10.5-fat3/egg/tweepy/binder.py", line 185, in _call
File "build/bdist.macosx-10.5-fat3/egg/tweepy/binder.py", line 149, in execute
tweepy.error.TweepError: Failed to send request: [Errno 61] Connection refused
编辑:我还没有对此进行确认,但我怀疑问题出在代理设置上