0

我可以使用权限“publish_stream”成功地通过这个 NSURL 获取朋友列表:

NSURL *friendsList = [NSURL URLWithString:@"https://graph.facebook.com/me/friends

但是,当我使用添加的字段尝试相同的操作时,如在此 URL 中:

NSURL *friendsList = [NSURL URLWithString:@"https://graph.facebook.com/me/friends?fields=installed"];

我收到一个错误:

error =     {
        code = 2500;
        message = "An active access token must be used to query information about the current user.";
        type = OAuthException;
    };

所以我的问题是我应该要求什么权限才能使第二个 URL 工作?

额外的问题:我应该包含什么 URL 参数才能在同一个 JSON 对象中返回一个小的个人资料图片?

谢谢 :)

4

1 回答 1

0

根据文档,您需要 app access_token。但是,在使用 Graph API Explorer 时,我可以在没有此权限的情况下获取此信息。

您可以查看Graph API Explorer进行测试。

此外,上述链接上的查询会返回该picture字段,该字段将包含一个带有用户图片的 URL。

于 2013-04-28T21:01:19.723 回答