i try following code to get list of friend, but i am getting those friend who using app, i need to get full list of friend. code is given below.
[FBRequestConnection startWithGraphPath:@"/me/friends"
parameters:nil
HTTPMethod:@"GET"
completionHandler:^(
FBRequestConnection *connection,
id result,
NSError *error
) {
NSLog(@"My Friend listed : is %@",result);
/* handle the result */
}];
Facebook API call now only returns friends who have used the app. so, you can't fetch your whole friend list, only friends who are also using the app.
Check this link for more info
https://developers.facebook.com/docs/graph-api/reference/v2.0/user/friends