Using the Facebook iOS SDK, how can I get an NSArray of all my friends and send them an invitation to my app? I am specifically looking for the graph path to ge
NSArray
To get list of friends you can use
https://graph.facebook.com/me/friends
[facebook requestWithGraphPath:@"me/friends" andParams:nil andDelegate:self];
To know more about all the possible API please read
https://developers.facebook.com/docs/reference/api/