Package Data | |
---|---|
Maintainer Username: | m1guelpf |
Maintainer Contact: | chris@hemmin.gs (Chris Hemmings) |
Package Create Date: | 2015-07-18 |
Package Last Update: | 2024-11-07 |
Home Page: | https://socialiteproviders.com/Microsoft-Azure/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:13:33 |
Package Statistics | |
---|---|
Total Downloads: | 2,785,688 |
Monthly Downloads: | 121,024 |
Daily Downloads: | 3,899 |
Total Stars: | 45 |
Total Watchers: | 7 |
Total Forks: | 28 |
Total Open Issues: | 0 |
composer require socialiteproviders/azure
Please see the Base Installation Guide, then follow the provider specific instructions below.
config/services.php
.'azure' => [
'client_id' => env('AZURE_CLIENT_ID'),
'client_secret' => env('AZURE_CLIENT_SECRET'),
'redirect' => env('AZURE_REDIRECT_URI')
],
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',
],
];
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();