状态更新通知,statusUpdateNotification
我在 iTunes 帐户中的 APP 中设置订阅状态 URL,例如 https://www.xxxxxx.xx/iospushnotification.php
我也成功测试了 nscurl --ats-diagnostics https://www.xxxxxx.xx/iospushnotification.php
我还在 iospushnotification.php 文件中实现了 php 代码来获取 JSON 响应
我成功购买了自动续订订阅沙盒,但我没有收到任何状态更新通知我从苹果服务器到我的服务器收到空白 [] JSON 响应。
https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/StoreKitGuide/Chapters/Subscriptions.html#//apple_ref/doc/uid/TP40008267-CH7-SW6
Best Answer-推荐答案 strong>
如果有人在 2 年后仍然关心,我找到了一个解决方案,假设您使用的是 PHP。
来自 stackoverflow 帖子 Receive JSON POST with PHP我们需要这样做:
$appleData = file_get_contents('php://input');
然后从那里 try 到 json_decode($appleData) 。
(我以前从未做过如此奇怪的事情来获取 POST 数据,但我以前主要使用框架;不幸的是,我目前没有那种奢侈......)
关于ios - 从 Apple 服务器获取空白响应订阅状态 URL IAP、状态更新通知、状态更新通知,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/46218509/
|