我有以下代码:
FB.getLoginStatus(function (response) {
if (response.session) {
} else {
FB.ui({
method: 'oauth',
perms: 'email,publish_stream',
},
function (response) {
if (response && response.installed) {
window.location.reload();
}
});
}
});
我想要的是基本上将用户重定向到同一页面,以便服务器端可以使用REST API。反正有没有让这项工作?
答案 0 :(得分:5)
订阅登录活动:
FB.Event.subscribe('auth.login', function (response) {
window.location.reload();
});
答案 1 :(得分:1)
使用此功能。
FB.Event.subscribe('auth.sessionChange', function (response) {
if (response.session) {
//user is logged in!
window.location = document.URL;
}
});