after a week of googling I can't be able to solve my problem. I' found different solution but nothing works.
I'm working on a wordpress site trying to implement Facebook Connect.
I've inserted in the footer.php :
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({appId : 'XXXX',
status : true,
cookie : true,
xfbml : true,
oauth : true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/it_IT/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
I've added:
<div class="fb-login-button" autologoutlink="true" data-show-faces="false" data-width="400" data-max-rows="1" data-size="medium" data-colorscheme="light" scope="user_about_me, email, read_stream, publish_actions"></div>
This works!
now I want to check the login status to do other actions:
FB.getLoginStatus(function(response) {
alert("STATUS");
if (response.status === 'connected') {
// connected
} else if (response.status === 'not_authorized') {
// not_authorized
} else {
// not_logged_in
}
});
But the callback doesn't answer.
What am I doing wrong?
Thanks Ale
EDIT:
I've inserted the FB.getLoginStatus after the FB.init inside the function window.fbAsyncInit, as written in the developer guide. But still not working!
SOLVED
It was my fault, the facebook app wasn't configured with the correct URL.
