Skip to content

Instantly share code, notes, and snippets.

@avanish
Created April 24, 2017 03:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avanish/29902bf08f7a8f46a49ffd071089f371 to your computer and use it in GitHub Desktop.
Save avanish/29902bf08f7a8f46a49ffd071089f371 to your computer and use it in GitHub Desktop.
Get FB Friends
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"me/friends"
parameters:nil
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
NSLog(@"%@", result);
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment