Looking to hire Laravel developers? Try LaraJobs

laravel-socialite-haai maintained by biigle

Description
Helmholtz AAI OAuth2 Provider for Laravel Socialite
Last update
2025/09/26 16:05 (dev-main)
License
Downloads
917

Comments
comments powered by Disqus

Laravel Socialite Helmholtz AAI provider

This is a Laravel Socialite provider for Helmholtz AAI.

Installation

Install the package:

composer require biigle/laravel-socialite-haai

Add the entry to config/services.php:

'haai' => [
  'client_id' => env('HAAI_CLIENT_ID'),
  'client_secret' => env('HAAI_CLIENT_SECRET'),
  'redirect' => env('HAAI_REDIRECT_URI'),
],

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('haai')->redirect();

Returned User Fields

  • id
  • name
  • given_name
  • family_name
  • email