我正在开发Instagram API,并尝试获取追随者列表,但是API返回错误。请告诉我这个问题的可能原因。
网址: token=MY_ACCESS_TOKEN
{
"meta": {
"code": 400,
"error_type": "OAuthPermissionsException",
"error_message": "This request requires scope=follower_list, but this access token is not authorized with this scope. The user must re-authorize your application with scope=follower_list to be granted this permissions."
}
}
发布于 2018-02-07 08:10:07
您的错误消息说明了一切:您需要使用scope=follower_list重新授权才能获得权限。
可能类似于:list
https://stackoverflow.com/questions/48658706
复制相似问题