使用python-Instagram API时连接被拒绝错误

时间:2015-02-11 06:45:35

标签: python-2.7 instagram httplib httplib2 instagram-api

我尝试运行一个简单的代码,使用Python-Instagram模块

从Instagram中提取数据

代码是

from instagram.client import InstagramAPI
api = InstagramAPI(client_id='YOUR_CLIENT_ID',client_secret='YOUR_CLIENT_SECRET')
popular_media = api.media_popular(count=20)

我在最后一条线路上收到Connection refused错误。因为Python-Instagram模块也使用httplib2模块。错误看起来像这样。

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/anaconda/lib/python2.7/site-packages/httplib2-0.9-py2.7.egg/httplib2/__init__.py", line 1060, in connect
raise socket.error, msg
socket.error: [Errno 111] Connection refused

如何解决这个问题?我是否必须提供使用此模块的任何连接规范?

0 个答案:

没有答案