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 followed the example (example.php) of this project: https://github.com/facebook/facebook-php-sdk

It runs very well and I can retrieve a lot of informations from a facebook account (name, id, first name, last name, city...) but I cannot see the user email, that is the only thing I need...

How can I modify that page to retrieve ONLY the user email?

Thanks!

share|improve this question
I know facebook, but fecebook? :D – dbf Sep 21 '12 at 18:59
Edited, sorry ;) – user1689629 Sep 21 '12 at 19:21

2 Answers

up vote 0 down vote accepted

but I cannot see the user email, that is the only thing I need...

You have to ask for the email permission first, when the user logs in to your app – see https://developers.facebook.com/docs/authentication/permissions/

How can I modify that page to retrieve ONLY the user email?

After getting the permission, if you don’t want all the additional fields, use the fields parameter in your Graph API call, as in /me?fields=email (it’ll still give you the user id as well, but not any other info you might not need).

share|improve this answer

You can get email by using this code

function fqlQuerynew() {
           FB.api('/me', function (response) {
                var query = FB.Data.query('select name,email,hometown_location, sex, pic_square from user where uid={0}', response.id);
                query.wait(function (rows) {
                    alert(rows[0].name);
                     alert(rows[0].email);
                     alert(rows[0].sex);
                     alert(rows[0].pic_square);
                });
            });
        }
share|improve this answer
Sorry, where can I put that function? In the file "example.php"? Anyway, thanks for your support (I'm not so expert...) That is a Javascript call, I need it via php. Thanks! – user1689629 Sep 21 '12 at 19:22
Or I must put it in the "with_js_sdk.php" file? – user1689629 Sep 21 '12 at 22:20

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.