PHP code example of busyphp / oauth

1. Go to this page and download the library: Download busyphp/oauth library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

busyphp / oauth example snippets


return [
    // 登录驱动配置
    'drivers'  => [
        // '驱动别名' => [
        //     'type' => '驱动名称',
        // ]
    ]
];


namespace app\home\controller;

use BusyPHP\Controller;
use BusyPHP\facade\OAuth;
use BusyPHP\oauth\interfaces\OAuthInfo;

class Index extends Controller
{
    public function index()
    {
        // 获取驱动
        $driver = OAuth::driver('驱动别名,由 config/oauth.php 定义');
        
        // 设置驱动登录数据,请依据不同的登录驱动提供不同的 OAuthDataInterface
        $driver->setData();
        
        // 执行普通登录
        $result = $driver->login(UserModel::init(), function(OAuthInfo $auth, UserModel $model) {
            // 执行注册校验
            // 如果已注册,请返回注册的用户ID
            // 否则返回自定义注册数据
            return [];
        });
        
        // 执行浏览器登录
        $result = $driver->webLogin('回跳地址', UserModel::init(), function(OAuthInfo $auth, UserModel $model) {
            // 执行注册校验
            // 如果已注册,请返回注册的用户ID
            // 否则返回自定义注册数据
            return [];
        });
        
        // 登录成功返回的 UserModel 数据
        $result->userInfo;
        
        // OAuth授权记录信息
        $result->oauthInfo;
    }
}