anli/yii2-auth0
最新稳定版本:1.11.0
Composer 安装命令:
composer require anli/yii2-auth0
包简介
Yii2 Auth0
关键字:
README 文档
README
Yii2 Auth0
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist anli/yii2-auth0 "*"
or add
"anli/yii2-auth0": "*"
to the require section of your composer.json file.
Run migration with:
php yii migrate/up --migrationPath=@vendor/anli/yii2-auth0/migrations
Configuration
Update the modules section with:
'auth0' => array_merge([
'class' => 'anli\auth0\Module',
'adminEmails' => ['anli@simbiosis.com.sg'],
], require(__DIR__ . '/auth0-local.php')),
Create a new file in config/auth0-local.php:
<?php
if (YII_ENV_DEV) {
return [
'serviceId' => '',
'domain' => '',
'clientId' => '',
'clientSecret' => '',
'redirectUrl' => '',
'apiTokens' => [
'usersRead' => '',
'usersUpdate' => '',
]
];
}
return [
'serviceId' => '',
'domain' => '',
'clientId' => '',
'clientSecret' => '',
'redirectUrl' => '',
'apiTokens' => [
'usersRead' => '',
'usersUpdate' => '',
]
];
Add to your .gitignore file:
/config/auth0-local.php
Login to auth0 and update the Allowed Callback Urls in your setting page.
Update the components section in the config with:
'user' => [
'identityClass' => 'anli\auth0\models\User',
'loginUrl' => ['auth0/user/login'],
],
'tenant' => [
'class' => 'anli\auth0\components\Tenant',
],
Usage
Update your url section for your login button to [/auth0/user/login].
Update your url section for your logout button to [/auth0/user/logout].
To show the login user, use:
Html::encode(Yii::$app->user->identity->username);
To show the login tenant, use:
Html::encode(Yii::$app->tenant->identity->name);
To auto update the tenant_id, add to the behaviors section of your model with:
use anli\auth0\behaviors\TenantBehavior;
...
'tenant' => [
'class' => TenantBehavior::className(),
],
FAQs
If you encounter the following error
\JWT not found
Change the firebase/php-jwt version to v2.2.0:
cd @vendor/firebase/php-jwt
git checkout v2.2.0
Update the @vendor/composer/autoload_classmap.php with:
'BeforeValidException' => $vendorDir . '/firebase/php-jwt/Exceptions/BeforeValidException.php',
'JWT' => $vendorDir . '/firebase/php-jwt/Authentication/JWT.php',
If you encounter the following error:
Cannot handle token prior to 2015-08-05T10:42:34+0200
And your system time forward a few minutes.
If you encounter the following error:
cURL error 60: SSL certificate problem: self signed certificate in certificate chain
Download CA to;
C:\xampp\php\ca\cacert.pem
and update C:\xampp\php\php.ini with
curl.cainfo=C:\xampp\php\ca\cacert.pem
Restart your apache2 server.
统计信息
- 总下载量: 161
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-04