SocialiteProviders / Microsoft-Graph by m1guelpf

Microsoft Graph OAuth2 Provider for Laravel Socialite
1,176,669
15
5
Package Data
Maintainer Username: m1guelpf
Maintainer Contact: cjedgerton@gmail.com (Chris Edgerton)
Package Create Date: 2017-01-10
Package Last Update: 2024-04-01
Home Page: https://socialiteproviders.com/Microsoft-Graph/
Language: PHP
License: MIT
Last Refreshed: 2024-04-14 15:02:18
Package Statistics
Total Downloads: 1,176,669
Monthly Downloads: 28,295
Daily Downloads: 116
Total Stars: 15
Total Watchers: 5
Total Forks: 7
Total Open Issues: 1

Graph

composer require socialiteproviders/graph

Installation & Basic Usage

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

Add configuration to config/services.php.

'graph' => [    
  'client_id' => env('GRAPH_CLIENT_ID'),  
  'client_secret' => env('GRAPH_CLIENT_SECRET'),  
  'redirect' => env('GRAPH_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\\Graph\\GraphExtendSocialite@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('graph')->redirect();