我正在尝试将 facebook 身份验证集成到我的 Cakephp 2.2.4 应用程序中,一旦 facebook 身份验证完成,我正在尝试创建用户并手动登录用户,我看到虽然下面的代码正在创建一个身份验证会话,即$this->Auth->user() 包含所有数据,它没有将用户登录到应用程序,即我无法访问应用程序的其他功能
$user = $this->User->findById($user_id);
$this->Auth->login($user);
这是我用来手动登录的,保存的用户不包含用户名和密码
这是在我的 AppController.php
class AppController extends Controller {
public $components = array(
'Session',
'Auth'=>array(
'loginRedirect'=>array('controller'=>'Users','action'=>'dashboard'),
'logoutRedirect'=>array('controller'=>'Users','action'=>'login'),
'authError'=>'You can\'t access that page',
'authenticate' => array(
'Form' => array(
'fields' => array('username' => 'email')
),'Basic'),
'authorize'=>array('controller')
),
'RequestHandler'
);
public $helpers = array('Js' => array('Jquery'),'Html','Form');
public function isAuthorized($user){
return TRUE ;
}
public function beforeFilter(){
// $this->Auth->allow('index','view');
// $this->set('logged_in',$this->Auth->loggedIn());
// $this->set('current_user',$this->Auth->user());
}
}