所以我试图通过图形端点“/me/friendlists”获取登录用户的好友列表。我已经使用 read_friendlists 在 Facebook 设置中添加了扩展权限。我对此进行了测试,它返回一个空数组。我在这里做错了吗?
这是我用来获取friendLists的代码:
[FBRequestConnection startWithGraphPath:@"/me/friendlists" completionHandler:^(FBRequestConnection *connection,id results,NSError* error){
NSLog(@"%@",results);
}];