Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Cross-posted from http://forum.developers.facebook.com/viewtopic.php?pid=254519.

I have users of my application who have granted the application the email extended permission, but I neglected to query for their email address at the time that they granted the permission, and so don't have it. I do have their facebook ID.

My understanding is that I can wait until they log in, and then use their session to query for their email address, which I can then store indefinitely. Is there a way that I, as a developer, can get their email address without them having to log in? That is, can I make a query using my session and get another user's email, if my session is that of a developer of an application to which they have granted email permissions?

If so, some sample code would be lovely. Thanks!

share|improve this question
and it was already answered over there. – msw Aug 5 '10 at 5:11
That FAQ doesn't mention the important part -- you need to have an access token that comes from authorizing as the application. Authorizing as a user who is a developer of the application won't work. See the link I posted over there. – cynic2k Aug 5 '10 at 6:30
I face the same issue. Cynic2K. do you have the solution? I'm using the new facebook PHP API. – murvinlai Nov 1 '10 at 22:24
1  
Have a look, i have briefed out the steps, to get user information stackoverflow.com/questions/2718722/… – Rafee May 26 '12 at 13:12

1 Answer

No need to wait for their login, you can still get it like this assuming they have provided you with email permission:

$email_info = $facebook->api_client->users_getInfo($user_id, "email");
print_r($email_info);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.