Instagram API无效:APINotFoundError

时间:2017-01-23 13:16:25

标签: javascript instagram instagram-api instafeedjs

我使用here的'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"}})

请帮忙!

2 个答案:

答案 0 :(得分:2)

user_id 2030811713有效且正确,我可以使用access_token访问它。

我的猜测是,用户(您在脚本中使用的access_token = 1437995179 @lu.kanemon)被user_id阻止2030811713

尝试使用其他用户生成的其他access_token

答案 1 :(得分:1)

您提供的用户ID错误,您可以使用此链接直接使用api进行检查(最后替换为您的访问令牌): https://api.instagram.com/v1/users/2030811713/

尝试使用此链接搜索所需用户的ID,然后在窗口小部件中插入正确的ID。如果用户设置为私有,则无法使用。 https://api.instagram.com/v1/users/search?q=INSERT_USERNAME_HERE

P.S:你不应该公开分享你的访问令牌 - 只是你给出的例子中的***