tipi / php-apple-signin
A simple library to decode and parse Apple Sign In client tokens.
Installs: 26 290
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 89
pkg:composer/tipi/php-apple-signin
This package is auto-updated.
Last update: 2025-10-29 03:11:28 UTC
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 tipi/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); ?>