1

我在我的应用程序中使用以下插件来让 facebook connect 与 auth 一起工作。

https://github.com/webtechnick/CakePHP-Facebook-Plugin

问题是我想手动将用户数据保存到用户表中。

所以我正在尝试这样

public function beforeFacebookSave(){
//$this->Auth->autoRedirect = false;
debug($this->Connect->user('email'));
$this->Connect->authUser['User']['email'] = $this->Connect->user('email');
$this->Connect->authUser['User']['username'] = $this->Connect->user('username');
//Must return true or will not save.
$this->redirect(array('controller' => 'users', 'action' => 'beforefbsave', '?' => array('param1' => $this->Connect->user('email')))); 
//return true;

}

重定向进入循环并出现错误

The page isn't redirecting properly

这是正确的方法还是遵循其他方法来完成这项工作?

4

1 回答 1

0

页面上有一个文档: https ://github.com/webtechnick/CakePHP-Facebook-Plugin

beforeFacebookSave 处理将用户保存到用户表中。如果返回 false,则创建被拖拽。

//Add an email field to be saved along with creation.
function beforeFacebookSave(){
    $this->Connect->authUser['User']['email'] = $this->Connect->user('email');
    return true; //Must return true or will not save.
}

所以如果我是你,我会看下一部分:

beforeFacebookLogin 在用户登录到 Auth 之前处理用户。

function beforeFacebookLogin($user){
    //Logic to happen before a facebook login
}

而不是重定向使用模型中的直接函数。

于 2015-01-12T22:25:24.990 回答