我目前正在尝试扩展 cakeDC 用户插件。事实证明,将此插件与位于此处的 Opauth 插件集成相对困难:
https://github.com/uzyn/cakephp-opauth
例如,我希望在我的应用程序中能够通过 facebook、google 等注册和登录用户......
我一直在尝试使用 google 实现,并且能够通过 opauth 插件从 Google 检索数据。我的问题在于我现在如何处理这些信息?如果我想用我的应用程序注册这个用户,我不知道接下来要执行的步骤......
数组中返回的数据如下所示:
Array
(
[auth] => Array
(
[uid] => 1xxxxxxxxx1
[info] => Array
(
[name] => xxx xxx
[email] => xx.xx@xx.com
[first_name] => xx
[last_name] => xx
)
[credentials] => Array
(
[token] => #%*(&)(*&%)*^$^)($%
[expires] => 2013-08-09T19:23:10+00:00
)
[raw] => Array
(
[id] => 1XXXXXXXXXXXXX1
[email] => XXXX.XXXXX@XXXXX.com
[verified_email] => 1
[name] => XXX XXX
[given_name] => XXXX
[family_name] => XXXXX
[gender] => male
[locale] => en
[hd] => test.com
)
[provider] => Google
)
[timestamp] => 2013-08-09T18:23:11+00:00
[signature] => *#&$&$$&$&$&$&$$####
[validated] => 1
)
在我看来,没有一个密码令牌会一直生成以进行比较,但这甚至不是当前的阻止程序。拦截器在于如何将此信息注册到 cakeDC 用户插件扩展类中。非常感谢任何帮助,我相信我不是唯一一个好奇如何扩展这个插件以与 Opauth 插件集成的开发人员。
编辑:(**工作登录代码**)
public function beforeFilter() {
$this->Auth->Allow('opauth_complete');
}
public function opauth_complete() {
$user = $this->set('opauth_data', $this->request->data);
$loginUser = $this->User->find('first',
array('fields'=>array('User.*'),
'conditions'=>array('User.email'=>$this->request->data['auth']['info']['email'])));
if ($this->request->is('post')) {
if ($this->Auth->login($loginUser)) {
//return $this->redirect($this->Auth->redirect());
$this->Session->setFlash(__('You are logged in.'));
}else{
$this->Session->setFlash(__('You are currently not Authorized'));
}
}
}
挂断似乎在 $this->Auth->login($loginUser); 它在数据库中找到用户,但它仍然不会通过谷歌帐户授权他们。