【发布时间】:2015-08-13 18:04:23
【问题描述】:
目标-C / iOS
我将使用 instagram 的 follow api。
设置网址:https://api.instagram.com/v1/users/{userid}/relationship?access_token={access_token}
参数字符串为“action=follow”,post的数据发送方式
但是,它不起作用。我收到错误消息。
meta = {
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.";
"error_type" = OAuthPermissionsException;
};
当我使用 instagram 的登录 api 时,范围 = 关系 + 喜欢 ... 发送的数据
如何在 iOS 中使用 instagram follow api。
【问题讨论】:
标签: ios instagram instagram-api