Kumaran
Kumaran

Reputation: 687

Facebook graph api to send app request to friends from iPhone app

i require to send app request to friends in my facebook profile. So can any one suggest me graph api available to achieve this, i prefer graph because i have been using the graph api for all other tasks. Thanks in advance.

Upvotes: 0

Views: 734

Answers (1)

Sonu
Sonu

Reputation: 957

Try this one you will get all your friends list which is there in your facebook.

-(IBAction)getMeFriendsButtonPressed:(id)sender {
    FbGraphResponse *fb_graph_response = [fbGraph doGraphGet:@"me/friends" withGetVars:nil];
    NSLog(@"getMeFriendsButtonPressed:  %@", fb_graph_response.htmlResponse);
}

Upvotes: 1

Related Questions