THIS IS NOT RELATED TO JS SDK
I am building an android app that authenticates via FB on the phone, and sends the users fb_id and fb_access_token to the server. On the server I have the app_id and app_secret obtained from facebook.
When I try:
https://graph.facebook.com/me?access_token=ACCESS_TOKEN
It returns only name and ID.
Even if I add a field key, it still just return id and name.
https://graph.facebook.com/me?fields=id,name,email&access_token=ACCESS_TOKEN
Do I need to add the app_id somewhere, or is that baked into the access_token? How can I retreive the users profile information (I have just basic profile permissions), without using an SDK, just a raw URL request?
THIS IS NOT RELATED TO JS SDK