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 try to install FOSFacebook, I have follow all the steps, but i got this error in js console:

Uncaught ReferenceError: onFbInit is not defined

I have include this lignes in my base.html.twig:

    <!-- FaceBook Init -->
    {{ facebook_initialize({'xfbml': true, 'fbAsyncInit': 'onFbInit();'}) }}
    {{ facebook_login_button({'autologoutlink': true}) }}

    <script>
    $(document).ready(function() {
        function goLogIn(){
          window.location = "{{ path('_security_check') }}";
        }

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

Someone can help me? Thx

share|improve this question

1 Answer

up vote 0 down vote accepted

Don“t define those functions within your $(document).ready(function() call. Use:

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

    function onFbInit() {
      if (typeof(FB) != 'undefined' && FB != null ) {
          FB.Event.subscribe('auth.statusChange', function(response) {
              if (response.session || response.authResponse) {
                  setTimeout(goLogIn, 500);
              } else {
                  window.location = "{{ path('_security_logout') }}";
              }
          });
      }
    }
</script>
share|improve this answer
Ok, I try it and I have no more error but the button not appear, and I dont know why with out error... – CdWeb Sep 20 '12 at 9:14
Did you include the html markup? <html xmlns:fb="facebook.com/2008/fbml">; – Carlos Granados Sep 20 '12 at 9:17
Yes, when I look the iframe src generate by login button its a white page: facebook.com/plugins/… – CdWeb Sep 20 '12 at 9:24
no idea about that – Carlos Granados Sep 20 '12 at 9:33

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.