Instagram API:返回html 404页面的用户提要

Instagram API:返回html 404页面的用户提要,instagram,instagram-api,Instagram,Instagram Api,最近,不知道从什么时候开始,当通过PHP请求Istagram用户提要(或只是通过浏览器点击URL)时,我收到一个404错误页面。。。在html中: 例如,比较: (404错误页,html) 致: (json提要/未经验证的错误消息) 还有其他人遇到同样的问题吗?我不知道Instagram API最近有什么变化吗?它使用的是用户id而不是用户名: https://api.instagram.com/v1/users/{user id}/media/recent/?client\u id=Y

最近,不知道从什么时候开始,当通过PHP请求Istagram用户提要(或只是通过浏览器点击URL)时,我收到一个404错误页面。。。在html中:

例如,比较:

(404错误页,html)

致:



(json提要/未经验证的错误消息)


还有其他人遇到同样的问题吗?我不知道Instagram API最近有什么变化吗?

它使用的是
用户id
而不是
用户名

https://api.instagram.com/v1/users/{user id}/media/recent/?client\u id=YOUR-client\u id


这是请求访问令牌。如果使用
客户端id
用户id
,我会收到此错误
{“meta”:{“error_type”:“OAuthAccessTokenException”,“code”:400,“error_message”:“提供的访问令牌无效。”}}
@PrabuGuna他们已经更新了API,所以现在必须对所有端点使用访问令牌。实际上,使用用户id和访问令牌,我会经历相同的行为:API请求的404 HTML页面(使用php的服务器端)。还有人面临这个问题吗?