I'm trying to set up the Facebook Javascript SDK to let users log into a site via Facebook. Needless to say, I'm kind of confused by the documentation on Facebook. My first question is, am I able to detect when a user comes to my site who is logged into Facebook and determine their Facebook ID and from there log them into my site (all without any user interaction)? It seems like everything is working ok except for this part. If the user clicks the Facebook login button then everything works fine and getLoginStatus() runs correctly. But on initial page load getLoginStatus() does not seem to invoke the callback function. And I was under the impression that there shouldn't even be a Login button, instead it should be the Facebook "register" button if they are logged in to Facebook. I've included some code below. If anyone could give me any guidance on this I would greatly appreciate it. Please keep in mind that I have removed my app id and my site name and replaced them with "dummy" text.
<!-- Load Facebook javascript SDK (This should be the first item after the opening body tag) -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: myAppId, status: true, cookie: true,
xfbml: true});
FB.getLoginStatus(function(response) {
if (response.session) {
// logged in and connected user, someone you know
alert('I know you');
} else {
// no user session available, someone you dont know
alert('Who are you?');
}
alert(response.session.uid);
});
};
(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>
<fb:login-button show-faces="false" width="70" max-rows="1" registration-url="myRegistrationUrl" style="margin: 0; padding: 0;"></fb:login-button>