SocialiteProviders / Microsoft-Azure by m1guelpf

Microsoft Azure OAuth2 Provider for Laravel Socialite
1,971,414
41
7
Package Data
Maintainer Username: m1guelpf
Maintainer Contact: chris@hemmin.gs (Chris Hemmings)
Package Create Date: 2015-07-18
Package Last Update: 2024-03-20
Home Page: https://socialiteproviders.com/Microsoft-Azure/
Language: PHP
License: MIT
Last Refreshed: 2024-03-24 03:05:25
Package Statistics
Total Downloads: 1,971,414
Monthly Downloads: 88,238
Daily Downloads: 559
Total Stars: 41
Total Watchers: 7
Total Forks: 26
Total Open Issues: 0

Azure

composer require socialiteproviders/azure

Installation & Basic Usage

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

Add configuration to config/services.php.

'azure' => [    
  'client_id' => env('AZURE_CLIENT_ID'),  
  'client_secret' => env('AZURE_CLIENT_SECRET'),  
  'redirect' => env('AZURE_REDIRECT_URI') 
],

Add provider event listener

Configure the package's listener to the 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\\Azure\\AzureExtendSocialite@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::with('azure')->redirect();