【发布时间】:2016-01-28 16:14:47
【问题描述】:
我正在访问 instagram API 以显示来自特定帐户的内容,但是我收到此错误:
/**/ JSON_CALLBACK({"meta":{"error_type":"OAuthAccessTokenException","code":400,"error_message":"The access_token provided is invalid."}})
我已经在https://www.instagram.com/developer/注册了我的应用
例如,访问此处时出现上述错误:
var endpoint = "https://api.instagram.com/v1/users/" + user_id + "/media/recent/?";
endpoint += "?count=99";
endpoint += "&client_id=" + client_id;
endpoint += "&callback=JSON_CALLBACK";
【问题讨论】: