The simple thing of calling FB.init (right before </body>) and then FB.getLoginStatus(callback) doesn't fire the callback function.

After some debugging, I think the SDK is stuck in the "loading" (i.e. FB.Auth._loadState == 'loading') phase and never gets to "loaded", so all callbacks are queued until the SDK has loaded. If I force-fire the "loaded" event during debugging - with FB.Event.fire('FB.loginStatus', 'loaded') in case you're intersted - then the callbacks are invoked correctly.

Extra details that might be relevant:

  1. My app is a facebook iframe app (loaded via apps.facebook.com/myapp)
  2. I'm using IE9. The same behavior happens in Chrome
  3. The app is hosted in http://localhost

What's going on? Why is the SDK never gets to loaded?

Thanks

UPDATE: Just tried it on Chrome and it worked (not sure why it didn't work before). Still doesn't work in IE

link|improve this question
Phew... after several hours of battling with this... ergh.. anyways, to get it working I used the custom channel url approach as discussed in FB.init. – Dan Apr 21 '11 at 9:17
Hi Dan, sorry for commenting on this old question, but I still have this problem. I tried with channelUrl (or channelURL, depends on which page of the docs you are reading), my channelUrl is on localhost:8080 cause I'm developing on my own machine, but it still does not work. FB.login, FB.api etc.. all work correctly, only FB.getLoginStatus is not working. Can you post your code? .. maybe there is some subtle difference – Simone Gianni Nov 7 '11 at 16:06
feedback

3 Answers

I had this same problem in Firefox 3.5 on Windows, but only on the very first log in to the page (probably because it was a slower machine and there was some weird timing issues going on).

I fixed it by forcing FB to refresh the login status cookie every time it checks:

FB.getLoginStatus(callback, true); //second argument forces a refresh from Facebook's server. 

Without "force=true", sometimes it wouldn't fire the callback.

link|improve this answer
1  
it should still fire a callback just the cached info – nav Jan 22 at 20:41
feedback

In my experience, getLoginStatus() never calls the callback in Firefox when third-party cookies are disabled.

The original poster mentioned his application is hosted on http://localhost. I've never had luck with that, and believe it will cause problems.

Just today, I've had problems where getLoginStatus is not calling the callback on any browser, unless the user is actually connected to the app! I'm hoping this is a bug on facebook's end that they will solve.

link|improve this answer
feedback

I also ran into this issue specifically in Chrome. I tried calling it on page load and after a user-initiated action with no success.

It turned out that it was not a cross-domain issue. The getLoginStatus() call was being blocked by the Un-Passwordise extension in Chrome. As soon as I disabled the extension, it worked perfectly, even on page load.

More info about this issue here: Chrome-only cross-domain scripting errs in Facebook iFrame App upon FB.Login(..)

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.