nicolapez/php-signin-apple

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

Maintainers

Package info

github.com/NicolaPez/php-signin-apple

pkg:composer/nicolapez/php-signin-apple

Statistics

Installs: 9

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

dev-master 2020-08-31 08:15 UTC

This package is auto-updated.

Last update: 2026-03-01 00:32:36 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 nicolapez/php-signin-apple

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);

?>