从android上关注instagram并处理OAuthPermissionsException

时间:2014-10-22 12:14:00

标签: objective-c instagram

我正在使用此链接

https://api.instagram.com/v1/users/[user-id]/relationship?access_token=[ACCESS-TOKEN]

在上面的链接中,user_id是我要关注的人的ID,并在Instagram开发者网站中为我的应用创建了访问令牌。

它会给出像

这样的回复
{
   "meta":
   {
     "error_type":"OAuthPermissionsException",
     "code":400,
     "error_message":"This request requires scope=relationships, but this access token is not authorized   with this scope. The user must re-authorize your application with scope=relationships to be granted write permissions."
   }
}

我在互联网上搜索,有人告诉我在创建访问令牌时添加scope = relationship我不知道该怎么做..

简单的字

点击按钮跟随Instagram用户。

1 个答案:

答案 0 :(得分:0)

范围=喜欢+评论+关系+基本

使用它,然后您尝试登录

“要一次请求多个范围,只需将范围用空格分隔。在网址中,这相当于一个转义空格(”+“)。”

https://instagram.com/developer/authentication/