I'm using the Facebook API in order to return the user's friends. However, when i run the the code, it returns only two users and this two users i'm using through out the testing and they are the only ones who gave permission for the app. However, all of my hundreds of users do no appear (are not returned in the results). Here is what i'm doing:
[FBRequestConnection startForMyFriendsWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"RESULT %@", result);
}];
This is how i'm returning the list of friends. is there anything wrong?