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 want to get the user's FID, Email and Name after login with Javascript so I make an Ajax call and save them to the database.

This is currently the code to login users:

    if (response.status === 'connected') { // the user is logged in and connected to your application
        var uid = response.authResponse.userID;
        var accessToken = response.authResponse.accessToken;
        // Alert with fid, email and name
        } else { //the user isn't logged in to Facebook or isn't connected to the application
        FB.login(function(response) {
            if (response.authResponse) {
                accessToken = response.authResponse.accessToken;
                // Alert with fid, email and name
                }
            }, {scope: 'email'});
        }

How can I do it?

share|improve this question
where are you exactly stuck ? – Dhiraj Bodicherla May 6 '12 at 7:13

1 Answer

up vote 1 down vote accepted

Call

https://graph.facebook.com/me

or

https://graph.facebook.com/USER_ID

or

https://graph.facebook.com/fql?q=SELECT uid,name,email FROM user WHERE uid=me()

You'll need the

email

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.