0

我正在尝试为 facebook 用户创建身份验证。现在我检查我的数据库中是否存在 fb 用户 ID,如果存在,则进行身份验证,如果不存在,则数据挖掘用户的 facebook 信息并创建用户,然后进行身份验证。它工作成功,问题是,如果我使用类似$this->Auth->user('id');值返回 null 的东西。我很好奇我可能做错了什么。下面是我的代码

public function fb_authenticate($data) {
    $this->Auth->fields = array('username' => 'fbid', 'password' => 'fbpassword');
    $this->loadModel('User');
    $user_record = $this->User->find('first', array(
            'conditions' => array('fbid' => $data['user_id'])
    ));
    if(empty($user_record)) {
        $fbu = $this->Facebook->getUserInfo($data['user_id']);
        $user_record = array(
            'User'=>array(
                'username'=>$fbu->username,
                'fbid'=>$data['user_id'],
                'oauth_token'=>$data['oauth_token'],
                'access_token'=>$data['access_token'],
                'firstname'=>$fbu->first_name,
                'lastname'=>$fbu->last_name,
                'fbpassword'=>$this->Auth->password($data['user_id']),
                'role'=>'user'
        ));     
        $this->User->create();
        $this->User->save($user_record,null);
    }
    if (!$this->Auth->login($user_record)) {
       $this->Session->setFlash(__('Invalid username or password, try again'));
    }
}

它验证并允许用户进入,但它不会将用户信息存储在 Auth 组件会话中。可能是什么问题呢 ??

如果我调试debug($this->Auth->user()),我可以看到数据,但如果我单独拉一个字段debug($this->Auth->user('id'));,它会返回null

4

1 回答 1

2

改变$this->Auth->login($user_record)

$this->Auth->login($user_record['User']).

于 2012-12-27T21:15:14.167 回答