我正在尝试获取也使用相同应用程序的用户的 Facebook 好友。
“是时候让其他使用这个应用程序的朋友了”总是打印出来
但是结果和错误都没有被打印出来
我使用 Facebook 的 Graph API 资源管理器检查了图形路径,它有效,但由于某种原因它不适用于我的应用程序。
- (void)getFriendsForUser:(NSNotification *)notification {
GGUser *theCurrentUser = [notification object];
NSLog(@"Time to get other friends that use this app");
[FBRequestConnection startWithGraphPath:@"me/friends?fields=id,name,installed,picture" parameters:nil HTTPMethod:@"GET" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"result %@",result);
NSLog(@"error - %@", error);
}];
}
其他 FBRequests,比如带有@“me”的图形路径,可以工作,只是不是这个。我究竟做错了什么?我该如何解决?