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 登录不起作用
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- Laravel 仓库 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
