Instagram API 文档无效的 JSON 错误
Posted
技术标签:
【中文标题】Instagram API 文档无效的 JSON 错误【英文标题】:Instagram API docs invalid JSON error 【发布时间】:2015-12-25 10:38:27 【问题描述】:当我尝试python-instagram 文档中的示例时,我不断收到此错误:
from instagram.client import InstagramAPI
access_token = "YOUR_ACCESS_TOKEN"
client_secret = "YOUR_CLIENT_SECRET"
api = InstagramAPI(access_token=access_token, client_secret=client_secret)
recent_media, next_ = api.user_recent_media(user_id="userid", count=10)
for media in recent_media:
print media.caption.text
错误:
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/Users/bli1/Development/Django/CL/cherngloong/cherngloong/lib/python2.7/site-packages/instagram/bind.py", line 197, in _call
return method.execute()
File "/Users/bli1/Development/Django/CL/cherngloong/cherngloong/lib/python2.7/site-packages/instagram/bind.py", line 189, in execute
content, next = self._do_api_request(url, method, body, headers)
File "/Users/bli1/Development/Django/CL/cherngloong/cherngloong/lib/python2.7/site-packages/instagram/bind.py", line 131, in _do_api_request
raise InstagramClientError('Unable to parse response, not valid JSON.', status_code=response['status'])
InstagramClientError: (404) Unable to parse response, not valid JSON.
我不确定是什么导致了这个错误。我得到了我的access_token
并填写了所有参数
当我尝试文档的其他部分时,我得到了同样的错误:
api = InstagramAPI(client_id='YOUR_CLIENT_ID', client_secret='YOUR_CLIENT_SECRET')
popular_media = api.media_popular(count=20)
for media in popular_media:
print media.images['standard_resolution'].url
【问题讨论】:
【参考方案1】:Ig 在 11 月 17 日对平台进行了一些重大更改(引入了沙盒模式),这可能会影响您的访问。
我会从您正在使用的存储库中查看this thread,那里还有很多 SO 链接。
一个建议是绕过 python API 并使用curl
来写评论(看看你是否可以缩小你的错误范围):
curl -F 'access_token=ACCESS-TOKEN' \
-F 'text=This+is+my+comment' \
https://api.instagram.com/v1/media/media-id/comments
【讨论】:
以上是关于Instagram API 文档无效的 JSON 错误的主要内容,如果未能解决你的问题,请参考以下文章
将没有 api 的 Instagram 主题标签 json 放入谷歌表格的问题
我不能为 instagram API 做 json()['graphql']['user']