Download the PHP package ahilmurugesan/socialite-apple-helper without Composer
On this page you can find all versions of the php package ahilmurugesan/socialite-apple-helper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ahilmurugesan/socialite-apple-helper
More information about ahilmurugesan/socialite-apple-helper
Files in ahilmurugesan/socialite-apple-helper
Package socialite-apple-helper
Short Description Laravel Socialite Apple Login Helper to generate and manage Client Secret
License MIT
Informations about the package socialite-apple-helper
Socialite - Apple Helper
1. Installation
2. Configuration Setup
You will need to add an entry to the services configuration file so that after config files are cached for usage in production environment (Laravel command artisan config:cache
) all config is still available.
To set up the required environment variables you can use the following artisan command which comes with this package.
The command will prompt you the required values.You need to provide the following keys.
- Team ID
- Key ID
- Client ID
- Auth Key ( file name of p8 auth file, located inside storage/app/ ) Example: AuthKey_SAMPKEY.p8
- Redirect URI ( fully qualified secure callback url ) Example: https://website.com/socialite/apple/callback
- Token Refresh Interval ( in days )
Client Secret will be automatically generated and added to the .env file by using the above command.
The expiration time registered claim key, the value of which must not be greater than 15777000 (6 months in seconds) from the Current Unix Time on the server.
Sign in with Apple Client Secret expiration time cannot be greater than six months. Hence it is advisible to refresh the Client Secret atleast once in six months after creation. You can adjust the Token Refresh Interval. There is a scheduled task which comes along with this package which will ensure that the Client Token is refreshed automatically. Please do ensure that you have enabled Task Scheduling
To manually refresh the Client Secret, please run the following command