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 am using a mix of PHP SDK 3.x.x and Javascript SDK to log into Facebook authentication. When we click the login button the windows appears and after filling the credentials and submitting it does not refresh the page. The FB.Event.subscribe('auth.login') doesn't seem to trigger. What is the problem?

window.fbAsyncInit = function() {
FB.init({
     appId   : '<?php echo $facebook->getAppId(); ?>',
     oauth  : true, // check login status
     cookie  : true, // enable cookies to allow the server to access the session
     xfbml   : true // parse XFBML
 });

// whenever the user logs in, we refresh the page
FB.Event.subscribe('auth.login', function(response) {
    window.location.reload();
});

FB.Event.subscribe('auth.logout', function(response) {
    window.location.reload();
});


};

(function() {
 var e = document.createElement('script');
 e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
 e.async = true;
 document.getElementById('fb-root').appendChild(e);
}());
share|improve this question
Are there any errors in the console? – sarnold Jan 11 '12 at 2:13
nope. :( I thought there will be some js errors but nothing. – Blueboye Jan 11 '12 at 2:51
You can find solving this problem from here: stackoverflow.com/questions/7141762/… – Tolga Arican Jan 13 '12 at 8:49

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.