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 phonegap facebook plugin and facebook javascript api. here is my code

FB.init({
    appId: "xxxxxxxxxxxxxxx",
    status: true,
    oauth :true,
    nativeInterface: CDV.FB,
    //channelURL : 'www', // Channel File
    cookie: true, 
    //useCachedDialogs: false, 
    xfbml: true
});

FB.login(function(response) {
    if (response.authResponse) {
        alert(response.authResponse.userID); // literally shows three dots
        FB.api('/me', function(me){
            if (me.id) {
                alert(me.id);  // this works
            }
        });
    }
}, { scope: "email" });

I can get accessToken from authResponse.... its a long string. but the userID field is literally "...". I can get the user's ID by making an extra round-trip to the server with another graph API call to fetch /me but that seems wasteful.

share|improve this question
I'm seeing the same thing. Note that the oauth token is valid in the callback, but the userID field is literally "..." – Leopd May 22 '12 at 20:47
are u not getting the userid by "response.authResponse.userID" statement ? – MSUH May 23 '12 at 7:23
1  
The question is not clear and I believe I have the same problem, so I'm going to clarify the question for the exact problem I'm seeing. – Leopd May 23 '12 at 18:27
Seeing the same problem here. Glad to learn the token returned is legit, and that there's a workaround for now. Too bad to have to do the extra round trip though. – mainsocial Feb 14 at 14:58
For me actually the userID is an empty string, "sig" and "secret" are both "...". – mainsocial Feb 14 at 15:17

2 Answers

[For the benefit of the OP] You can get the userID in the client by making an extra call to the server as you started to show. Here's the correct code:

    FB.api('/me', function(me){
        if (me.id) {
            var facebook_userid = me.id;
            alert(facebook_userid);
        }
    });

This doesn't explain why the userID field is "..." in the login response object. But it is a workaround.

share|improve this answer
How can I use this in html page. Can you help me? – Jhoon Bey Nov 20 '12 at 19:05
worked for me ...thank you – samih Dec 29 '12 at 7:07

I posted a bug on github ( https://github.com/davejohnson/phonegap-plugin-facebook-connect/issues/151 ) because this seems a "feature" of the plugin. Not sure if the problem is in the facebook IOS sdk (not passing those data back from FB) or in the plugin (not passing those data back at JS level).

share|improve this answer
recently they moved the github project, and all the issues seem to have been wiped :( – mainsocial Feb 14 at 14:54

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.