isudakoff / yii2-mailru-authclient
用于通过yii2-authclient使用MailRu的扩展
1.0.1
2017-08-25 08:44 UTC
Requires
- yiisoft/yii2-authclient: ~2.0@dev
This package is auto-updated.
Last update: 2024-09-29 05:01:20 UTC
README
此扩展为yii2-authclient添加了对MailRu OAuth2的支持。
安装
安装此扩展的首选方式是通过composer。
运行以下命令之一
php composer.phar require --prefer-dist isudakoff/yii2-mailru-authclient "*"
或者将以下内容添加到你的composer.json文件的require部分。
"isudakoff/yii2-mailru-authclient": "*"
to the require
section of your composer.json.
使用方法
您必须阅读yii2-authclient的文档
在MailRu上注册您的应用程序
并将MailRu客户端添加到您的认证客户端。
'components' => [ 'authClientCollection' => [ 'class' => 'yii\authclient\Collection', 'clients' => [ 'mailru' => [ 'class' => 'isudakoff\authclient\MailRu', 'clientId' => 'mailru_app_id', 'clientSecret' => 'mailru_app_secret', ], // other clients ], ], // ... ]