我正在使用此处的“instafeed.js”插件在他们的网站上显示我客户的 Instagram 照片。我不断收到错误,不知道出了什么问题。这个插件以前工作得很好。
这是我的代码:
<script type="text/javascript">
var feed = new Instafeed({
get: 'user',
userId: '2030811713',
clientId: '2d0b703da7c14a378bc19bc04f120da4',
accessToken: '***',
target: 'list-inline',
limit: '10',
template: '<li><img src="{{image}}"/></li>',
resolution: 'standard_resolution',
after: function() {
var el = document.getElementById('list-inline');
if (el.classList)
el.classList.add('show');
else
el.className += ' ' + 'show';
}
});
feed.run();
</script>
这是我不断收到的错误:
/**/ instafeedCache8030560cf189b254.parse({"meta": {"code": 400, "error_type": "APINotFoundError", "error_message": "this user does not exist"}})
请帮忙!