This package is abandoned and no longer maintained. The author suggests using the laravel/socialite package instead.

Slack OAuth2 Provider for Laravel Socialite

5.0.0 2024-01-05 00:36 UTC

README

Moved to official provider

Socialite now has an official slack provider. This provider is deprecated.

https://laravel.com/docs/10.x/socialite#installation

composer require socialiteproviders/slack

Installation & Basic Usage

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

Add configuration to config/services.php

'slack' => [    
  'client_id' => env('SLACK_CLIENT_ID'),  
  'client_secret' => env('SLACK_CLIENT_SECRET'),  
  'redirect' => env('SLACK_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\Slack\SlackExtendSocialite::class.'@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('slack')->redirect();

Returned User fields

  • id
  • name
  • email
  • avatar
  • organization_id