英文:
IOS Subscription paid value
问题
我已配置了苹果Server-to-Server通知,它开始向我的Webhook发送通知,但响应正文不包含有关支付金额或货币的任何信息。我已搜索了获取该信息的端点,但没有找到。
英文:
I have configured apple Server-to-Server Notifications and it started to send notification to my webhook but the response body doesn't contain any information about paid value nor currency.
I've searched for endpoint to get that info, with no lock
答案1
得分: 0
Apple在S2S通知中不包括价格信息。在购买验证响应中也没有价格信息(https://developer.apple.com/documentation/appstorereceipts)。但是设备上有这些信息(不确定它们是如何访问的),因此我们在验证请求发送到后端时从设备获取价格信息。
英文:
Apple does not include the price in the S2S notification. It is also not present in the receipts validation response (https://developer.apple.com/documentation/appstorereceipts), but the device does have this information ( not sure how they access it), so we get the price info from the device during validation request it sends to our backend.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论