How can I retrieve data from the Graph API using NSMutableURLRequest?
I already have a valid access token and I need to fetch basic user information such as birthday, ID, picture or first/last name.
In the accounts framework you can create a request with parameters using + requestForServiceType:requestMethod:URL:parameters: so I just tried - setValue:forHTTPHeaderField: but it doesn't seem to work...
As long as I write all the necessary attributes in the request URL it works fine. Maybe there is a request URL scheme I can use or any other way to submit the attributes needed to perform the request.
Thanks in advance