APPLE-STORE 内购订阅通知 ResponseBodyV2 验证极简快速版,绝对的安全

Apple的官方文档:

App Store Server Notifications | Apple Developer Documentation

国外大神对V2验证的手撸,看不了的话,自己想办法

App Store Server Notifications V2 with JWT, PHP and Laravel - S M Ibrahim Nafiz

苹果通知验证流程

苹果iOS内购三步曲:App内退款、历史订单查询、绑定用户防掉单!--- WWDC21-腾讯云开发者社区-腾讯云

通知验证SDK( 仅支持php7.4及以上)

composer require readdle/app-store-server-api

这个里面有自己的示例,打开即用

 $postData       = file_get_contents("php://input");
 $responseBodyV2 = AppStoreServerUtils::notifyVerify($postData);

方法示例

public static  function notifyVerify(string $signedPayload, $cerPath= "")
     {
         try {
             return ResponseBodyV2::createFromRawNotification($signedPayload, Helper::toPEM(file_get_contents("https://www.apple.com/certificateauthority/AppleRootCA-G3.cer")));
         }catch (AppStoreServerNotificationException $e)
         {
             Log::error('Server notification could not be processed: ' . $e->getMessage(), [$e->getFile(),$e->getLine()]);
             exit('Server notification could not be processed: ' . $e->getMessage());
         }
     }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>