SocialiteProviders / Microsoft-Azure by m1guelpf

Microsoft Azure OAuth2 Provider for Laravel Socialite
2,161,713
42
7
Package Data
Maintainer Username: m1guelpf
Maintainer Contact: chris@hemmin.gs (Chris Hemmings)
Package Create Date: 2015-07-18
Package Last Update: 2024-04-29
Home Page: https://socialiteproviders.com/Microsoft-Azure/
Language: PHP
License: MIT
Last Refreshed: 2024-05-23 03:04:34
Package Statistics
Total Downloads: 2,161,713
Monthly Downloads: 95,257
Daily Downloads: 5,012
Total Stars: 42
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();