Yii2 framework facebook and google login using authclient not working(Yii2 框架 facebook 和 google 使用 authclient 登录不起作用)
问题描述
我已经按照这里的说明
我还附上了我的完整代码这是在我的 controller.php
公共函数操作(){返回 ['错误' =>['类' =>'yiiwebErrorAction',],'认证' =>['类' =>'yiiauthclientAuthAction','successCallback' =>[$this, 'successCallback'],],];}这是在查看页面
=yiiauthclientwidgetsAuthChoice::widget(['baseAuthUrl' =>['网站/身份验证']]);?>这在我的配置目录 main.php 文件中
'authClientCollection' =>['类' =>'yiiauthclientCollection','客户' =>['脸书' =>['类' =>'yiiauthclientclientsFacebook','clientId' =>'********','clientSecret' =>'************',],],],..请帮帮我..谢谢
确保在您的 behaviours() 中允许访问 SiteController.php 中的操作auth"
所以你的规则应该看起来像:
'rules' =>[['动作' =>['登录','错误','认证'],'允许' =>真的,],['动作' =>['注销','索引'],'允许' =>真的,'角色' =>['@'],],],i have followed the instruction here http://www.yiiframework.com/doc-2.0/yii-authclient-authaction.html.. and it's not working for me.. i am using yii2 authclient for social website facebook and google login ...it's not working for me. i am attached screen short .it's my login page
after clicking facebook or google button again the same page appeard in next new window pls see the image
and also i am attached my full code this is on my controller.php
public function actions()
{
return [
'error' => [
'class' => 'yiiwebErrorAction',
],
'auth' => [
'class' => 'yiiauthclientAuthAction',
'successCallback' => [$this, 'successCallback'],
],
];
}
and this is on view page
<?=
yiiauthclientwidgetsAuthChoice::widget([
'baseAuthUrl' => ['site/auth']
]); ?>
and this on my config directory main.php file
'authClientCollection' => [
'class' => 'yiiauthclientCollection',
'clients' => [
'facebook' =>[
'class' => 'yiiauthclientclientsFacebook',
'clientId' => '********',
'clientSecret' => '**********',
],
],
],
..please help me.. Thanks
Make sure that in your behaviours() you allow access to the action "auth" in your SiteController.php
So your rules should look something like:
'rules' => [
[
'actions' => [ 'login', 'error', 'auth' ],
'allow' => true,
],
[
'actions' => [ 'logout', 'index' ],
'allow' => true,
'roles' => [ '@' ],
],
],
这篇关于Yii2 框架 facebook 和 google 使用 authclient 登录不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Yii2 框架 facebook 和 google 使用 authclient 登录不起作用
基础教程推荐
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- php中的foreach复选框POST 2021-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- php中的PDF导出 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
