我使用here的'instafeed.js'插件在其網站上顯示我客戶的Instagram照片。我不斷收到錯誤,不知道出了什麼問題。這個插件以前用得很好。Instagram API無法使用:APINotFoundError
這是我的代碼:
<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"}})
請幫幫忙!
代碼是正確的,你確定它是一個用戶,也是有效的ID? – Viney