i want to get all friend using Facebook integration in my app. i am give user_friends
permmision at login time. and i use below code to get list of friends.
[FBRequestConnection startWithGraphPath:@"/me/friends"
parameters:nil
HTTPMethod:@"GET"
completionHandler:^(
FBRequestConnection *connection,
id result,
NSError *error
) {
NsLog(@"Result = %@",result);
}];
But i got only that friend which uses my apps. means who installed my apps. but not get all friends of my Facebook . i want all friend of Facebook.