使用 Instagram API 获取关注者列表时遇到问题?
Issue getting the list of followers using Instagram API?
我正在 Instagram API 上工作并尝试获取关注者列表,但是 API return
错误。请告诉我这个问题的可能原因
URL: https://api.instagram.com/v1/users/self/follows?access_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."
}
}
你的错误信息说明了一切:你需要用scope=follower_list重新授权才能获得权限。
我正在 Instagram API 上工作并尝试获取关注者列表,但是 API return 错误。请告诉我这个问题的可能原因
URL: https://api.instagram.com/v1/users/self/follows?access_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."
}
}
你的错误信息说明了一切:你需要用scope=follower_list重新授权才能获得权限。