所以我试图通过图形端点“/ me / friendlists”获取登录用户的好友列表。我已经使用read_friendlists在Facebook设置中添加了扩展权限。我测试了它,它返回一个空数组。我在这里做错了吗?
以下是我用来获取friendLists的代码:
[FBRequestConnection startWithGraphPath:@"/me/friendlists" completionHandler:^(FBRequestConnection *connection,id results,NSError* error){
NSLog(@"%@",results);
}];
答案 0 :(得分:1)
Graph API没有/ me / friendlists端点。好友列表是用户对象https://developers.facebook.com/docs/reference/api/user
之外的字段请尝试使用此端点:“me?fields = friendlists”
您还可以使用图表浏览器在编码之前试用您的查询:https://developers.facebook.com/tools/explorer