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've been reading several answers on this topic but I couldn't make it work. This is what I am trying:

     window.fbAsyncInit = function() {
      FB.init({
        appId      : '247886858583094',
        status     : true, 
        cookie     : true,
        xfbml      : true,
        oauth      : true,
      });
       FB.Event.subscribe('auth.login',function(response) { alert('You logged in'); } );
    };
    (function(d){
       var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
       js = d.createElement('script'); js.id = id; js.async = true;
       js.src = "//connect.facebook.net/en_US/all.js";
       d.getElementsByTagName('head')[0].appendChild(js);
     }(document));

What do I add to get an alert on user login?

share|improve this question

1 Answer

up vote 0 down vote accepted

FB.Event.subscribe('auth.login',function(response) { alert('You logged in'); } );

Add this code inside the scope of window.fbAsyncInit = function()

share|improve this answer
I added that line just below the code. But it doesn't display the alert. lujanventas.com/entrar/index2.php – Liso22 May 2 '12 at 7:03
Place it inside the scope of window.fbAsyncInit = function() – Yan May 2 '12 at 7:03
I just changed the code and it's still not working. (I edited the question to match it) – Liso22 May 2 '12 at 7:10
I'm getting an error message in the console "unsafe javascript access". Though it seems to have to do with the FB popup but that's working normally – Liso22 May 2 '12 at 7:18
Seems I wasn't loggin in due to a Chrome specific bug. The alert works fine in other browsers. – Liso22 May 2 '12 at 7:22

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.