xuejd3/socialiteproviders-v2ui_bbs

v2ui_bbs OAuth2 Provider for Laravel Socialite

12.0.1 2025-08-30 02:26 UTC

This package is auto-updated.

Last update: 2025-08-30 02:33:13 UTC


README

    composer require xuejd3/socialiteproviders-v2ui_bbs

Installation & Basic Usage

Please see the Base Installation Guide, then follow the provider specific instructions below.

Service Provider

  • Remove if you have added it already. Laravel\Socialite\SocialiteServiceProvider

  • Add \SocialiteProviders\Manager\ServiceProvider::class.

For example in Laravel 11+

In .bootstrap/providers.php

return [
    // a whole bunch of providers
    // remove 'Laravel\Socialite\SocialiteServiceProvider',
    \SocialiteProviders\Manager\ServiceProvider::class, // add
];

Event Listener

Laravel 11+

In Laravel 11, the default EventServiceProvider provider was removed. Instead, add the listener using the listen method on the Event facade, in your AppServiceProvider

Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.

namespace App\Providers;

use Illuminate\Support\Facades\Event;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     */
    public function register(): void
    {
        //
    }

    /**
     * Bootstrap any application services.
     */
    public function boot(): void
    {
        Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
            $event->extendSocialite('v2ui_bbs', \SocialiteProviders\V2uiBbs\Provider::class);
        });
    }
}

Reference

Configuration setup

You will need to add an entry to the services configuration file so that after config files are cached for usage in production environment (Laravel command ) all config is still available.artisan config:cache

See your provider README for more infomation on the required config.

Add configuration to config/services.php.

'v2ui_bbs' => [
    'client_id'     => env('V2UI_BBS_KEY'),
    'client_secret' => env('V2UI_BBS_SECRET'),
    'redirect'      => env('V2UI_BBS_REDIRECT_URI'),
    'guzzle'        => [
        'headers' => ['User-Agent' => 'xuejd3/socialiteproviders-v2ui_bbs'],
    ]
]

Usage

  • You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):
return Socialite::driver('v2ui_bbs')->redirect();

Returned User fields

$user = Socialite::driver('v2ui_bbs')->user();

$user->getId();
$user->getName();
$user->getEmail();
$user->getAvatar();