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.

I have this script that I put on the head section of my html:

<script>
    function goLogIn(){
        alert("go login");
        window.location.href = "{{ path('_security_check') }}";
    }

    function onFbInit() {
        if (typeof(FB) != 'undefined' && FB != null ) {
            alert('here')
            FB.Event.subscribe('auth.statusChange', function(response) {
                if (response.session || response.authResponse) {
                    alert("login");
                    setTimeout(goLogIn, 500);
                } else {
                    alert('logout');
                    window.location.href = "{{ path('_security_logout') }}";
                }
            });
        }
    }
  </script>

So the alert box here is printed out. However I tried logging in and logging out, but none of the login or logout is triggered. Any idea why?

Here's how I initialized the facebook button:

<!-- inside a twig template -->
{{ facebook_initialize({'xfbml': true, 'fbAsyncInit': 'onFbInit();'}) }}

{{ facebook_login_button({'autologoutlink': true, 'label': 'Log in using Facebook'}) }}
share|improve this question
Is "{{ path('_security_logout') }}" being interpolated by Twig? – ethagnawl Sep 15 '12 at 4:59
@ethagnawl mind clarifying what interpolated mean? the thing is that it didn't even print the alert, either login or logout – xonegirlz Sep 15 '12 at 5:05
Does Twig turn {{ path('_security_logout') }} into a string? Are there any errors in the console? Have you tried placing an alert inside the 'auth.statusChange' callback, but outside the if? – ethagnawl Sep 15 '12 at 5:10
@ethagnawl yes and it didn't print the alert as well – xonegirlz Sep 15 '12 at 5:12
What is the value of FB inside onFbInit? Have you included the facebook.js script on the page? – ethagnawl Sep 15 '12 at 5:15
show 8 more comments

1 Answer

up vote 0 down vote accepted

It turns out that I have to clear the cookies and then it worked.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.