Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.