我可以使用权限“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对象?
谢谢:)
答案 0 :(得分:0)
根据docs,您需要app access_token 。但是,使用Graph API Explorer,我可以在没有此权限的情况下获取此信息。
您可以查看Graph API Explorer进行测试。
此外,上述链接上的查询会返回picture
字段,该字段将包含一个包含用户图片的网址。