I have Facebook Connect working (partially at least).
For a user who logged into facebook, when they first visit my site's login page, the following js line will refresh the page and my php log the user in.
FB.init("api-key","xd_receiver.htm",{"reloadIfSessionStateChanged":true});
However, when a user logs out of facebook, the facebook cookie remains when they visit my site and hence they are treated as logged into my site until the page is reloaded by the same js line I mentioned.
So my question is, is there a possible way to detect facebook login state without refreshing the page? And, is there a way to use facebook connect without using the javascript?
Thanks in advance.