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.

Am developing a system for an app to award points users for recruiting their friends. When the friend accepts the request I can retrieve the id of the person who invited them but can not find their email.

Have tried:

    $fbInviter = $facebook->api("/$inviterId", 'GET');
    $fbInvEmail = $fbInviter['email'];

but it appears ['email'] isn't in the returned array. The app requests permission from each user when the first access it aswell as requesting offline access so permissions shouldn't be a problem.

Any ideas?

share|improve this question

1 Answer

up vote 0 down vote accepted

There is no way to get the email address for a Facebook user other than the current user, and the current user's address is only available if they've granted you the email extended permission

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.