I need to get the list of all user's friends from Facebook, but the request returns only friends with installed app. Here the code:
FBRequest *request = [FBRequest requestWithGraphPath:@"me/friends" parameters:@{@"fields":@"installed,id,first_name,last_name,location,email"} HTTPMethod:@"GET"];
[request startWithCompletionHandler: ^(FBRequestConnection *connection,
NSDictionary* result,
NSError *error) {
NSLog(@"result friends %@",[result objectForKey:@"data"]);
NSLog(@"error %@",[error description]);
}];