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.

Ive been bashing my head for a few hours now. Ive finally integrated the Phonegap Facebook plugin into my application, but whenever I do:

FB.api('/me', function(me){
    alert("ID: "+me.id);
});

or

var fbid = "1";
FB.getLoginStatus(function(response) {
    if (response.status == 'connected') {
        fbid = response.authResponse.userID;
        var token = response.authResponse.accessToken;
    //  alert(response.authResponse.userID);
    //  alert(response.authResponse.accessToken);
    etc...

The token is fine, but the ID alerts are always 'undefined' which seems weird because you need the ID to get the token if im correct?

share|improve this question

1 Answer

FB.getLoginStatus does not return the user's facebook ID nor does it return the signedRequest string. It does return an accessToken which you can then use to get the user's FB id via https://graph.facebook.com/me?access_token=[accessToken]. That will give you a JSON object that has the user's information (if the accessToken is valid).

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.