ArcGIS Online OAuth2 Provider for Laravel Socialite
6,275
0
3
Package Data
Maintainer Username: m1guelpf
Maintainer Contact: piesse@gmail.com (David Piesse)
Package Create Date: 2017-08-29
Package Last Update: 2023-11-07
Home Page: https://socialiteproviders.com/ArcGIS/
Language: PHP
License: MIT
Last Refreshed: 2024-03-25 03:05:28
Package Statistics
Total Downloads: 6,275
Monthly Downloads: 109
Daily Downloads: 9
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

ArcGIS

composer require socialiteproviders/arcgis

Installation & Basic Usage

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

Add configuration to config/services.php

'arcgis' => [    
  'client_id' => env('ARCGIS_CLIENT_ID'),  
  'client_secret' => env('ARCGIS_CLIENT_SECRET'),  
  'redirect' => env('ARCGIS_REDIRECT_URI') 
],

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\\ArcGIS\\ArcGISExtendSocialite@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('arcgis')->redirect();

Returned User fields

  • id
  • nickname (same as id)
  • name
  • email
  • avatar