I am looking to combine a call to Facebook Graph API. I would like to collect both the friends and profile information in one go.
I have also raised a separate question issue here - Facebook SDK collecting user information and friends
What is the correct/easiest way to create a Facebook Graph request for both these parts?
The user is logged in with this permission array:
NSArray *permissionsArray = @[ @"user_about_me", @"user_birthday", @"user_location", @"email"];
I am then trying to create a graph connection to get information 'such as' username, email, friend list. Ideally I want to do this in one FBRequest, rather than separate FBRequestConnection(s). How can I accomplish this? I have looked through the Facebook SDK information and cannot see how to do this, how can I find out more information on this?