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 added to phonegap app Facebook Connect, It works fine and generates Access Token, But when I'm trying to get the userID the value is "Undenified" my function:

 FB.init({
        appId: "************",
        nativeInterface:CDV.FB,
        xfbml: true,
        useCachedDialogs: false,
        status: true,
        cookie: true,
        oauth: true
    });
    //alert("Init Done");
    FB.getLoginStatus(function (response) {
        if (response.authResponse) {               
            if (response.status == 'connected') {                  
                Token = response.authResponse.accessToken;// This one is Good!                   
                userid = response.authResponse.userID;// This one is Bad                  

            }
share|improve this question

2 Answers

up vote 1 down vote accepted

I use the following and it works fine:

FB.api('/me', {}, function (response) {
    fbuserid = response.userid;
});

This gives you the user data. You can also pass the scope just to get what you want like email, userid, etc...

share|improve this answer

Iterate through the keys to see what is stored

for (var key in response.authResponse) {
    console.log(key);
    console.log(response.authResponse[key]);
}
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.