betabrand/php-apple-signin

A simple library to decode and parse Apple Sign In client tokens.

Maintainers

Package info

github.com/betabrand/php-apple-signin

pkg:composer/betabrand/php-apple-signin

Statistics

Installs: 10

Dependents: 0

Suggesters: 0

Stars: 0

1.4 2021-04-16 22:07 UTC

This package is auto-updated.

Last update: 2026-02-17 08:55:16 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 betabrand/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);

?>