i need help to get facebook user's email. here's what I did.
https://graph.facebook.com/me?scope=email&access_token=xxxxxxxxxxxxxxxx
the result I got back has no email in it.
{
"id": "7027110",
"name": "John Mike",
"first_name": "John",
"last_name": "Mike",
"link": "http://www.facebook.com/john.mike",
"username": "john.mike",
"location": {
"id": "11241875545",
"name": "Oakland, New Jersey"
},
"gender": "male",
"timezone": -5,
"locale": "en_US",
"verified": true,
"updated_time": "2011-12-07T16:53:47+0000"
}
also tried to change scope=email to fields=email, still does not work. whats missing, please help me out
https://graph.facebook.com/me/fql?access_token=<your access token>&q=select%20name,email%20from%20user%20where%20uid=me()orhttps://graph.facebook.com/me/fql?access_token=<your access token>&q=select%20name,email%20from%20user%20where%20uid%20in%20(select%20uid2%20from%20friend%20where%20uid1%20=me())– Brian Colvin Dec 8 '11 at 16:49