2017 © Pedro Peláez
 

yii2-extension yii2-oauth

An yii2 extension for oauth

image

lulubin/yii2-oauth

An yii2 extension for oauth

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 1 Versions
  • 4 % Grown

The README.md

1.Install

composer require --prefer-dist lulubin/yii2-oauth "dev-master", (*1)

2.Config

'components' => [
    'authClientCollection' => [
        'class' => 'yii\authclient\Collection',
        'clients' => [
            'qq' => [
                'class' => 'lulubin\oauth\Qq',
                'clientId' => '***',
                'clientSecret' => '***',
            ],
            'weixin' => [
                'class' => 'lulubin\oauth\Weixin',
                'clientId' => '***',
                'clientSecret' => '***',
            ],
            'weibo' => [
                'class' => 'lulubin\oauth\Weibo',
                'clientId' => '***',
                'clientSecret' => '***',
            ],
            'github' => [
                'class' => 'yii\authclient\clients\GitHub',
                'clientId' => '***',
                'clientSecret' => '***,
            ],
        ]
    ]
]

3.Usage

Controller

class SiteController extends Controller
{
    public function actions()
    {
        return [
            'auth' => [
                'class' => 'yii\authclient\AuthAction',
                'successCallback' => [$this, 'successCallback'],
            ],
        ];
    }

    public function successCallback($client)
    {
        $id = $client->getId();
        $attributes = $client->getUserAttributes();
        var_dump($id, $attributes);
    }
}

View

<?php
use yii\helpers\Html;
use lulubin\oauth\assets\AuthChoiceAsset;
AuthChoiceAsset::register($this);
?>
<div class="form-group other-way">
    <?=Html::a('',['/site/auth','authclient'=>'qq'],['class'=>'qq'])?>
    <?=Html::a('',['/site/auth','authclient'=>'weibo'],['class'=>'weibo'])?>
    <?=Html::a('',['/site/auth','authclient'=>'weixin'],['class'=>'weixin'])?>
    <?=Html::a('',['/site/auth','authclient'=>'github'],['class'=>'github'])?>
</div>

4.申请上述第三方的 APP ID 和 APP KEY

(1)QQ互联:http://connect.qq.com/, (*2)

(2)微信开放 平台:https://open.weixin.qq.com/, (*3)

(3)新浪微博开放平台:http://open.weibo.com/, (*4)

(4)Github Developer applications:https://github.com/settings/developers, (*5)

QQ和微博的申请比较麻烦,时间久网站 需要备案;, (*6)

Github的申请则十分迅速,建议先申请这个测试。, (*7)

The Versions

10/04 2018

dev-master

9999999-dev https://github.com/lulubin/yii2-oauth

An yii2 extension for oauth

  Sources   Download

BSD 3-Clause

The Requires

 

extension oauth yii2