我一直在阅读关于这个主题的几个答案,但我无法让它发挥作用。这就是我正在尝试的:
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));
我要添加什么来获得用户登录警报?