Jira OAuth1 Provider for Laravel Socialite

5.0.0 2023-08-21 23:13 UTC

This package is auto-updated.

Last update: 2023-09-11 22:02:35 UTC


README

Deprecated

This provider is deprecated. You should use the Atlassian provider instead.

composer require socialiteproviders/jira

Installation & Basic Usage

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

Add configuration to config/services.php

'jira' => [    
  'client_id' => env('JIRA_CLIENT_ID'),  
  'client_secret' => env('JIRA_CLIENT_SECRET'),  
  'redirect' => env('JIRA_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\Jira\JiraExtendSocialite::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('jira')->redirect();

Returned User fields

  • id
  • nickname
  • name
  • email
  • avatar
  • active
  • timezone
  • locale