我正在尝试使用 Yii 扩展 yii-facebook-opengraph 进行登录。我安装登录小部件没有问题。
我有两个问题:
- 第一:登录后弹出关闭。我不知道如何重定向到登录页面(弹出关闭并留在同一页面)。我想在会话中保存 userId。
解决:编辑:SFacebook.php 方法 initJs 。
if ($this->async) {
$init = "window.fbAsyncInit = function(){{$init};
// whenever the user logs in, we tell our login service
FB.Event.subscribe('auth.login', function() {
window.location = ' " . Yii::app()->baseUrl."xxxREDIRECT-URLxxx". "';
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = '{$script}';
d.getElementsByTagName('head')[0].appendChild(js);
}(document));";
}
二:在页面内我调用了 facebook api。如果用户关闭 facebook 会话,当我尝试调用 facebook api 时,我有一个错误,
所以我想在每个页面上检查用户是否登录,这样:try{ $userId = Yii::app()->session['userId']; if (($userId=="") || ($userId==0)){ try{ $user = Yii::app()->facebook->api('/me'); Yii::app()->session['userId'] = $user['id']; Yii::app()->session['userName'] = $user['name']; return true; }catch (Exception $e) { $this->redirect(array('Admin/Index')); //LOGIN PAGE } }else{ return true; } }catch (Exception $e) { $this->redirect(array('Admin/Index')); //LOGIN PAGE }