lonelythinker / yii2-authclient
Yii2 authclient extension
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 0
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2024-10-21 07:17:03 UTC
README
"yii authclient","QQ Auth","Wechat Auth","Weibo Auth"
Config Setting
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'qq' => [
'class' => 'lonelythinker\yii2\authclient\Qq',
'clientId' => 'qq_appid',
'clientSecret' => 'qq_appkey',
],
'weixin' => [
'class' => 'lonelythinker\yii2\authclient\Weixin',
'clientId' => 'weixin_appid',
'clientSecret' => 'weixin_appkey',
],
'weibo' => [
'class' => 'lonelythinker\yii2\authclient\Weibo',
'clientId' => 'wb_key',
'clientSecret' => 'wb_secret',
],
],
]
// other components
]