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 have a site that uses the Facebook JavaScript API to allow users to log in to a Ruby on Rails application through Facebook. When a user clicks to log in or log out, Facebook code does the authentication and then raises an event and supplies a cookie with authentication parameters. The cookie is sent to my server, and I use it to authenticate. This has been working for some time.

  // Connnect with Facebook.
  $('.fbLogout').click(function() {
      FB.logout();
  });
  $('.fbLogin').click(function () {
      FB.login();
  });
  FB.init({appId: '163691796982300', status: true, cookie: true, xfbml: true});
  FB.Event.subscribe('auth.sessionChange', function() {
      location.reload();
  });

I recently got a new computer, and my site doesn't work from this computer. The Facebook login UI seems to work, the auth.sessionChange event is raised, but it looks like the cookie is never supplied and so the page goes into an endless loop of receiving an authentication event, refreshing the page with no cookie and repeating. The problem seems be on this single computer and happens regardless of which browser I use, and which OS I use.

It works on:

  • Friend's PC using Internet Explorer
  • Friend's PC using Firefox Friend's PC
  • Friends PC using Firefox in Ubuntu 10.10 in VirtualBox
  • Another PC in the same subnet as new computer
  • New computer booting from Ubuntu 10.10 live CD 64-bit

Doesn't work on:

  • New computer using Internet Explorer
  • New computer using Chrome
  • New computer using Firefox
  • New computer using Firefox in Ubuntu 10.10 in VirtualBox

Could this somehow be caused by my network card or network configuration?

Update: It started working just as mysteriously as it was failing.

share|improve this question
Do you have a crazy firewall anywhere, something might be filtering based on MAC address? Do you have any problems with any other cookies or any other FB Connect logins? – mu is too short Feb 27 '11 at 2:37
I don't think I have any special firewall. This is a home computer with Windows 7 64 bit. I can log in to Facebook just fine and I haven't noticed any problems with any other sites. I'll try finding some other sites Facebook connect to compare. – Brian Erickson Feb 27 '11 at 3:07
Can you try this instead:window.location.reload() also any errors in Firebug? – ifaour Feb 27 '11 at 4:08
Do you have an Ubuntu live CD/DVD that you could try? That might tell you if the problem is somewhere in Windows7 or elsewhere in your network. – mu is too short Feb 27 '11 at 4:43
1  
It just started working. No changes on my part. I'm guessing it might have something to do with stale information on a CDN or something like that. If someone wants to guess the reason (mu is too short maybe?) as an answer, I'll pick the best guess and mark this as answerd. – Brian Erickson Mar 3 '11 at 5:56
show 4 more comments

2 Answers

up vote 0 down vote accepted

This could be the same thing I had to deal with. In your code I can't see the asynchronous initialization:

window.fbAsyncInit = function() {
    FB.init({
          appId  : fb_appId,
          status : true, // check login status
          cookie : true, // enable cookies to allow the server to access the session
          xfbml  : true,  // parse XFBML
          oauth : true //enables OAuth 2.0
    });
};

This is very important to guarantee that the Facebook JavaScript SDK is fully loaded before you call the init method. Therefore it may suddenly have started working, because the browser already cached the JavaScript file.

share|improve this answer

Try top.location.reload();

It looks like you might be using some sort of jQuery. If so, what version are you using?

Also it might be worth migrating to the new JavaScript SDK with OAuth 2.0. The migration has put a lot of my applications' bugs to rest.

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.