augusl / comune-php-apple-signin
A simple library to decode and parse Apple Sign In client tokens.
1.0.5
2020-02-19 14:27 UTC
Requires
- firebase/php-jwt: ^5.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
PHP library to manage Sign In with Apple identifier tokens, and validate them server side passed through by the iOS client.
Installation
Use composer to manage your dependencies and download php-apple-signin:
composer require griffinledingham/php-apple-signin
Example
<?php use AppleSignIn\ASDecoder; $clientUser = "example_client_user"; $identityToken = "example_encoded_jwt"; $appleSignInPayload = ASDecoder::getAppleSignInPayload($identityToken); /** * Obtain the Sign In with Apple email and user creds. */ $email = $appleSignInPayload->getEmail(); $user = $appleSignInPayload->getUser(); /** * Determine whether the client-provided user is valid. */ $isValid = $appleSignInPayload->verifyUser($clientUser); ?>