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.

I am using fql to fetch the list of all friends of a user and there basic info . How ever i am not able to get the email of user. below is my query :

$frd_fql          = "SELECT uid,
            name,
            username,
            first_name,
            middle_name,
            last_name,
            birthday_date,
            sex,
            current_location,
            email,
            relationship_status,
            languages,
            religion,
            interests,      
            hometown_location
            FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = '".$u_id."' )";
                $ret_frdobj       = $this->_facebook->api(array(
                                   'method' => 'fql.query',
                                   'query' => $frd_fql,
                ));

can anyonr help why i am not able to get user email ? Thanks in advance :)

share|improve this question

1 Answer

can anyonr help why i am not able to get user email ?

Because getting the email address is only possible for the current user of your app, but not for their friends.

There is no such thing as a friends_email permission, as you can clearly see here: https://developers.facebook.com/docs/authentication/permissions/#user_friends_perms

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.