nerdzlab / socialite-apple-sign-in
Extension of laravel/socialite package. Adds apple provider to sign in.
Installs: 25 353
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: ^7.2|^8.0
- ext-json: *
- ext-openssl: *
- firebase/php-jwt: ^5.2|^6.0
- laravel/socialite: ^4.0|^5.0
Requires (Dev)
- orchestra/testbench: ^4.0
- phpunit/phpunit: ^9.1
README
Good solution for implementation auth with apple for REST API. This package is extension of laravel/socialite package, it adds custom apple provider to socialite. It allows you to to create auth with apple flow using only apple's access_token. Package will check if token was not modified by validating token signature.
Installation
You can install the package via composer:
composer require nerdzlab/socialite-apple-sign-in
You may publish config if needed:
php artisan vendor:publish --provider="Nerdzlab\SocialiteAppleSignIn\SocialiteAppleSignInServiceProvider" --tag="config"
Usage
To get started you need to add credentials for the apple service in your config/services.php
file.
'apple' => [ 'client_id' => 'YOUR_BUNDLE_ID' ],
In case you have several apps, you may add several bundle ids as array.
'apple' => [ 'client_id' => [ 'FIRST_BUNDLE_ID', 'SECOND_BUNDLE_ID', ] ],
Package automatically adds 'apple' driver to Socialite. After that you can obtain user data from access_token received from apple.
use Laravel\Socialite\Facades\Socialite; $user = Socialite::driver('apple')->userFromToken($accessToken);
Package will cache public keys retrieved from apple during auth flow. You may automatically cache public keys by calling command:
php artisan apple-sign-in:update-keys
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.