Я использую смесь PHP SDK 3.xx и Javascript SDK для входа в систему аутентификации Facebook.Когда мы нажимаем кнопку входа в систему, появляются окна, и после заполнения учетных данных и их отправки страница не обновляется.FB.Event.subscribe ('auth.login') не срабатывает.В чем проблема?
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);
}());