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 developing an application that adds a tab to a specific fan page (it is not meant for use outside that fan page), but I need to get the ID of the user that is viewing the tab (The tab consists of a contest that users need to answer a few questions for and we want to save the answers to those questions so we can determine the winner).

I know that the standard facebook tab application only gets vague information about the user (language and a rough indication of the age of the user) but I was wondering how I would go about getting the user id of the user that is viewing the tab. I'd like to stress that this page is not installed on a users profile page, so I can't get the ID like that. I was thinking that there might be a way to ask for permission to get info about the user, but I have never seen this inside a tab before, only on canvas apps.

We can't have this contest on a canvas page, we really need it to be on a tab page. The alternative would be to just randomly pick one of our fans as the winner, but I'd rather really fix this problem.

Any help regarding the topic of asking users for permission to access their personal data from an application tab would be greatly appreciated.

Thanks in advance,

Tim

share|improve this question

1 Answer

up vote 4 down vote accepted

In order to get any specific information about a user, that user would have had to authorise your application.

Based on you requirements I would recommend that you use the JavaScript SDK: http://developers.facebook.com/docs/reference/javascript/

The following code will try to log the user in on load - if successful the response will contain the users id as well as the access token. If the user has not already auhtorised the application, an authorisation dialog will pop up. In this example the login is attempted straight after initialisation but it is much better practice to have FB.login triggered by explicit user interaction (eg from a link) otherwise the browser may block the popup.

<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function() {
        FB.init({
            appId: 'your app id', 
            cookie: true, 
            xfbml: true,
            oauth: true
        });

        FB.login(function(response) {
            if (response.authResponse) {
                // response will contain, among other things, the users id and accesstoken
                FB.api('/me', function(response) {
                    // response will contain the user data you have permissions for
                });
            } else {
                // User cancelled login or did not fully authorize.
            }
        }, {scope: 'LIST,YOUR,PERMISSIONS'});
    };
    (function() {
        var e = document.createElement('script'); e.async = true;
        e.src = document.location.protocol +
                '//connect.facebook.net/en_US/all.js';
                document.getElementById('fb-root').appendChild(e);
    }());
</script>

Edited to correct error pointed out by @ifaour.

share|improve this answer
2  
You need to set the oauth parameter to true. – ifaour Aug 21 '11 at 23:46
Thank you very much for this comment. I was having trouble with this code but when I set that flag, it worked – Tim van Dalen Aug 22 '11 at 7:42
@jBit, to get the id, would that be part of the "user_about_me" scope permission? – Andypandy Sep 14 '11 at 16:11
@Andypandy you'll have access to the users Facebook ID as soon as the user authorises your application - you don't need extended permissions – jBit Sep 14 '11 at 17:00

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.