I am working on a Facebook application which is integrated with Facebook and am trying to get the user's FB session. As far as I understand, a common usage scenario is as follows.

  1. call FB.init()
  2. call FB.getLoginStatus giving it an appropriate callback.

I ran the following code (the application id).

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
    <!--

    function init(){
        FB.init({
            appId  : '9999999999999',
            status : true, // check login status
            cookie : true, // enable cookies to allow the server to access the session
            xfbml  : true, // parse XFBML
            channelUrl : 'http://127.0.0.1:8888/channel.html', // custom channel
            oauth  : true // enable OAuth
        });
        alert('going to call FB.getLoginStatus ');

        FB.getLoginStatus(function(response) {
            alert('whoo hoo!!! getLoginStatus called the callback');
        });
    }
    init();
    //-->
</script>

If the user is already logged in to Facebook in the same browser session then everything works as expected - returning the populated _response.authResponse_. However, if the user is not logged in to Facebook the callback is not triggered at all. Checking the browsers network log, I see that Facebook returns the following response (request from http://www.facebook.com/dialog/oauth?).

Application Error: There was a problem getting data for the application you requested. The application may not be valid, or there may be a temporary glitch. Please try again later.

I checked this on Chrome and Firefox (Mac).


Update

I would like to thank everyone who responded.

Ben's comment had the answer.

Thanks Ben - you saved me lots of frustration.

link|improve this question
9  
Is your app in Sandbox Mode? If so there appears to be a bug that could cause this: bugs.developers.facebook.net/show_bug.cgi?id=19359 – Ben Aug 29 '11 at 16:13
Are you using channelUrl as loopback, or is that just for sample? I do not believe loopback will work for that function. – Shawn E Carter Aug 29 '11 at 16:34
the use of channelUrl is explained here. apparently it should speeds up the load time and helps avoid a few problems. don't really care if it does anything while i develop, should help when i go live. – Nitzan Volman Aug 29 '11 at 21:00
feedback

3 Answers

up vote 6 down vote accepted

The cause is a recent bug which only affects sandbox mode. I switched off sandbox mode, and it worked like a charm.

link|improve this answer
feedback

Try forcing loading the event:

FB.getLoginStatus(function(response) {
    alert('whoo hoo!!! getLoginStatus called the callback');
}, true);

It is stated in FB.getLoginStatus.

The event might be not fired in some situations.

link|improve this answer
tried that one, no joy – Nitzan Volman Aug 29 '11 at 20:49
Adding true to force the load fixed the no response issue for me! – Yaypaul Apr 9 at 17:50
feedback

I am using the below at http://shawnsspace.com. You can use this for a test or reference.

<div id="FBauth"></div>
<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function() {
        FB.init({
            appId  : '112104298812138',
            status : true, // check login status
            cookie : true, // enable cookies to allow the server to access the session
            xfbml  : true, // parse XFBML
            //channelUrl : 'http://WWW.MYDOMAIN.COM/channel.html', // channel.html file
            oauth  : true // enable OAuth 2.0
        });
        if (window!=window.top) {
            FB.Canvas.setAutoResize();
        };
        FB.getLoginStatus(function(response) {
            if (response.authResponse) {
                // logged in and connected user, someone you know
                var authbox = document.getElementById('FBauth');
                //authbox.innerHTML="Login Please <br />";
                authbox.innerHTML="<fb:login-button autologoutlink='true'></fb:login-button>";
                FB.XFBML.parse(authbox);
            }
            else {
                // no user session available, someone you dont know
                var authbox = document.getElementById('FBauth');
                authbox.innerHTML="";
                var a = document.createElement('a');
                a.setAttribute("href","javascript:void();");
                a.setAttribute("onclick","FBlogin();");
                a.innerHTML="Please Login";
                authbox.appendChild(a);

                window.FBlogin = function(){
                    FB.login(function(response) {
                        if (response.authResponse) {
                            FB.api('/me', function(response) {

                            });
                        } // Push user name for personalization.
                        else {
                            top.location.href = "http://apps.facebook.com/shawnsspace";
                              // user cancealed login.
                        }
                    }, {scope: 'manage_pages'});
                };
                //
            }
        });

        FB.Event.subscribe('auth.login', function(response) {
            top.location.href = 'http://apps.facebook.com/shawnsspace/';
        });
        FB.Event.subscribe('auth.logout', function(response) {
            //top.location.href = "http://facebook.com/shawnsspace.com";
        });
    };
    (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>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.