I am using FB.getLoginStatus for an application in Facebook. This works fine in all the browsers, including IE8. But it doesn't work for IE7. My code is:

       FB.getLoginStatus(function(response) {              
           if (response.session) {
              alert("logout");
            }
            else{
                FB.Event.subscribe('auth.login', function(response) {
                    login();
                });
              alert("login");
            }
        });

Does anyone know why? Thanks in advance!

link|improve this question

59% accept rate
2  
I set the channelUrl : 'example.com/facebook/' in the FB.init and it worked! – novellino Jan 13 '11 at 15:39
+1 channelUrl worked for me too! Was pulling my hair out on this one. thanks – Pat James Feb 9 '11 at 6:20
Just a note, I also see the same problem in IE8. The answer posted below resolves the issue in both IE7 and IE8 for me. – DuckMaestro Feb 21 '11 at 20:28
feedback

2 Answers

up vote 7 down vote accepted

According to the documentation at http://developers.facebook.com/docs/reference/javascript/fb.init/, the proper solution is to create a file on your web server (for instance channel.html) containing just:

 <script src="http://connect.facebook.net/en_US/all.js"></script>

And then specifying the absolute URL to your channel.html in your init options:

 <div id="fb-root"></div>
 <script src="http://connect.facebook.net/en_US/all.js"></script>
 <script>
   FB.init({
     appId  : 'YOUR APP ID',
     channelUrl  : 'http://example.com/channel.html'  // custom channel
   });
 </script>

For convenience in deployment, I use the following to calculate my channelUrl.

 var curLoc = window.location;
 curLoc.protocol + "//" + curLoc.hostname + ":" + curLoc.port + "/channel.html"
link|improve this answer
worked for me. thanks! – Jeff Apr 6 '11 at 14:43
feedback

I tried to make this code work for me but was not able to handle the event when a user is not logged on. Here is my code:

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
    FB.init({
        appId: 'MY_APP_ID',
        channelUrl: 'http://localhost:8081/facebook_channelUrl.html'  // custom channel
    });

    FB.getLoginStatus(function (response) {
        if (response.session) {
            alert("logout");
        }
        else {
            FB.Event.subscribe('auth.login', function (response) {
                login();
            });
            alert("login");
        }
    });
</script>

I do not have anything else in my page. When a facebook user is logged on, the application is working but nothing happens when a user is not logged to facebook.

Do you have a simple working example to help me with this issue, I have not been able to solve this in 2 days. I originally posted my question here : Facebook - FB.getLoginStatus

Regards, Linvi

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.