Skip to content

OpenID Connect OAuth2 Provider for Laravel Socialite

Notifications You must be signed in to change notification settings

jp-gauthier/socialiteproviders-oidc

Repository files navigation

OpenID Connect (OIDC) for Laravel Socialite

Installation & Basic Usage

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

Add configuration to config/services.php

'oidc' => [
    'client_id' => env('OIDC_CLIENT_ID'),
    'client_secret' => env('OIDC_CLIENT_SECRET'),
    'redirect' => env('OIDC_REDIRECT_URI'),
    'url' => env('OIDC_URL'), // URL of your installation
],

Add provider event listener

Configure the package's listener to listen for SocialiteWasCalled events.

Add the event to your listen[] array in app/Providers/EventServiceProvider. See the Base Installation Guide for detailed instructions.

protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        // ... other providers
        'SocialiteProviders\\OIDC\\OIDCExtendSocialite@handle',
    ],
];

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('oidc')->redirect();

Returned User fields

  • id
  • name
  • email

More fields are available under the user subkey:

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

$locale = $user->user['locale'];
$email_verified = $user->user['email_verified'];

About

OpenID Connect OAuth2 Provider for Laravel Socialite

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages