yujiandong / yii2-authclient
适用于微博、QQ、微信等的 Yii Authclient
1.0
2015-11-03 01:40 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-10-02 18:52:54 UTC
README
适用于微博、QQ、微信、Gitee 的 Yii Authclient
配置设置
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'weibo' => [
'class' => 'yujiandong\authclient\Weibo',
'clientId' => 'wb_key',
'clientSecret' => 'wb_secret',
],
'qq' => [
'class' => 'yujiandong\authclient\Qq',
'clientId' => 'qq_appid',
'clientSecret' => 'qq_appkey',
],
'weixin' => [
'class' => 'yujiandong\authclient\Weixin',
'clientId' => 'weixin_appid',
'clientSecret' => 'weixin_appkey',
],
'gitee' => [
'class' => 'yujiandong\authclient\Gitee',
'clientId' => 'gitee_clientId',
'clientSecret' => 'gitee_clientSecret',
],
],
]
// other components
]