makcent/yii2-authclient

适用于微博、QQ、微信等的Yii认证客户端

v1.0.0 2018-06-22 02:03 UTC

This package is auto-updated.

Last update: 2024-09-14 04:36:41 UTC


README

微博、QQ、微信的Yii认证客户端

配置设置

'components' => [
    'authClientCollection' => [
        'class' => 'yii\authclient\Collection',
        'clients' => [
            'weibo' => [
                'class' => 'makcent\authclient\Weibo',
                'clientId' => 'wb_key',
                'clientSecret' => 'wb_secret',
            ],
            'qq' => [
                'class' => 'makcent\authclient\Qq',
                'clientId' => 'qq_appid',
                'clientSecret' => 'qq_appkey',
            ],
            'weixin' => [
                'class' => 'makcent\authclient\Weixin',
                'clientId' => 'weixin_appid',
                'clientSecret' => 'weixin_appkey',
            ],
        ],
    ]
    // other components
]