I am facing issues while integrating Facebook Connect Feature to simple HTML page. I am doing it via Javascript code.
Here is HTML namespace:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Here is Javascript code:
window.fbAsyncInit = function() {
FB.init({appId: 'xxxxxxxxxxxxxxx', status: true, cookie: true, xfbml: true});
/* All the events registered */
FB.Event.subscribe('auth.login', function(response) {
// do something with response
alert("Logged in...");
});
FB.Event.subscribe('auth.logout', function(response) {
// do something with response
alert("Logged out...");
});
FB.getLoginStatus(function(response) {
if (response.session) {
// logged in and connected user, someone you know
alert("Logged in...");
}
});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
Here is Facebook Connect button HTML code:
<table>
<tr>
<td><fb:login-button size="large" autologoutlink="true" perms="email,user_birthday,status_update,publish_stream"> Connect with Facebook </fb:login-button>
</td>
</tr>
</table>
But when I login with my facebook credentials, NONE of the Javascript functions are being get invoked. Please help!