应用程序购买交易收据数据的存活时间有多长?

发布于 2024-12-28 19:06:51 字数 82 浏览 0 评论 0原文

有谁知道应用程序购买数据在进行购买后在 transactionReceipt 变量中存在多长时间?我需要多快将其发送到我的 php 服务器来验证收据?

Does anybody know how long in app purchase data live in transactionReceipt variable after making purhcase? How fast i need to send it to my php server to verify the receipt?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只为一人 2025-01-04 19:06:51

原则上,它永远有效。收据一般不会过期,特别是应用内购买收据永远不会过期。

It is, in principle, valid forever. Receipts don't expire in general, and in app purchase receipts specifically never expire.

夏雨凉 2025-01-04 19:06:51

IAP 没有任何过期日期,我相信您实际上不需要在服务器上验证收据。

如果您想在服务器上进行收据验证,那么您需要在购买时存储一些有关用户的信息。由于两个原因,它不能是 UDID。
1. UDID 已弃用。
2. 如果用户想在第二台设备上恢复,它将无法工作。

您可以做的是根据从 Apple 获得的收据创建唯一的收据。每张收据都有交易 ID 和日期,您可以从中创建密钥以跨多个设备识别用户。

IAP don't have any expiration date, and I believe you don't really need to verify the receipt on the server.

If you want to go through the receipt validation on server then you need to store some information about user at the time of purchase. which can not be the UDID because of two reason.
1. UDID is deprecated.
2. it will not work if user wants to restore on second device.

What you can do is create a unique from the receipt you get from Apple.Each receipt has transaction id and date you can create key out of it to identify user across multiple devices.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文