szohan/appstore-server-notifications

Request handler App Store Server Notifications.

Installs: 4 921

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Forks: 1

Type:symfony-bundle

1.4 2022-09-01 13:38 UTC

This package is auto-updated.

Last update: 2024-03-28 11:47:48 UTC


README

Request handle and parse AppStore Server Notification to object.

Detailed information about the request can be found on the official website: https://developer.apple.com/documentation/appstoreservernotifications

Installation

This project using composer.

$ composer require szohan/appstore-server-notifications

Usage

Get payloadSigned how object.

<?php

use Szohan\AppstoreServerNotifications\Api\AppStoreNotification;
________________

$appStoreNotification = new AppStoreNotification($rawSignedPayload);
$signedPayload = $appStoreNotification->getPayload();

var_dump($signedPayload);