the front end of my application is doing facebook login. it gets the auth token back and submits it to the server. the server then calls the graph url with the token but all the server gets back is the name and id. i'm manully calling the curl like shown:
curl -v https://graph.facebook.com/me?access_token=...
but the response i get is just name and id.
{"name":"Henry Robers","id":"10155954328696972"}
my application needs an email in order to create an account and send welcome letter and such so i'm stuck. any help is much appreciated.