arkhipovandrei / yii2-dnevnik-authclient
Dnevnik.ru 的扩展,用于通过 yii2-authclient 使用
0.0.1
2017-04-05 11:50 UTC
Requires
- yiisoft/yii2-authclient: ~2.0@dev
This package is auto-updated.
Last update: 2024-09-04 19:45:34 UTC
README
安装此扩展的首选方式是通过 composer。
安装
安装此扩展的首选方式是通过 composer。
可以运行
composer require --prefer-dist arkhipovandrei/yii2-dnevnik-authclient
或者在 composer.json 的 require
部分添加
"arkhipovandrei/yii2-dnevnik-authclient": "*"
。
使用
'components' => [ // ... 'authClientCollection' => [ 'class' => 'yii\authclient\Collection', 'clients' => [ 'dnevnik' => [ 'class' => 'arkhipovandrei\authclient\Dnevnik', 'clientId' => 'API_KEY', 'clientSecret' => 'SECRET_KEY', 'scope' => 'avatar, fullname' //'staging' => bool true or false. Default value false ], ], ], // ... ]