承接 fillincode/bee-id 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

fillincode/bee-id

最新稳定版本:1.0.3

Composer 安装命令:

composer require fillincode/bee-id

包简介

package for authorization via Bee-id

README 文档

README

Installation

composer require fillincode/bee-id

Get started

  1. After installing the package, you need to add data to connect to the authorization service in the config/services.php file

    return [
        'bee_id' => [
            'client_id' => env('BEE_ID_CLIENT_ID'),
            'client_secret' => env('BEE_ID_CLIENT_SECRET'),
            'redirect' => env('BEE_ID_REDIRECT_URL'),
        ],
    ];
  2. Add routes for authorization

    use Laravel\Socialite\Facades\Socialite;
    
    Route::get('/auth/redirect', function () {
        return Socialite::driver('bee_id')->redirect();
    });
    
    Route::get('/auth/callback', function () {
        /** @var \Fillincode\BeeId\User $user */
        $user = Socialite::driver('bee_id')->user();
    
        // $user->token
    });

统计信息

  • 总下载量: 244
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-01-17