1
xaoflysho 2023-06-14 15:04:09 +08:00
https://developer.apple.com/documentation/appstorereceipts/validating_receipts_with_the_app_store
Important The verifyReceipt endpoint is deprecated. To validate receipts on your server, follow the steps in Validating receipts on the device on your server. To validate in-app purchases on your server without using receipts, call the App Store Server API to get Apple-signed transaction and subscription information for your customers, or verify the AppTransaction and Transaction signed data that your app obtains. You can also get the same signed transaction and subscription information from the App Store Server Notifications V2. |
2
brader OP @xaoflysho 这个文档我也看了,但是我还是理解不了怎么解决,我以前是会拿接口返回中的 latest_receipt_info 字段的数据做统计的,如果这个接口弃用后,我不知道从哪里去拿
|
3
4mYHime 2023-07-07 16:31:16 +08:00
现在是不是得前端传 transaction ID ,然后后端去 v1/transactions 查
|
4
fgd 2023-09-18 17:45:00 +08:00
现在有什么解决方案吗?
原来我们的做法是: 1. app 可以调用服务端验收据,服务端根据苹果返回的收据信息给用户发权益。 2. 监听苹果服务端通知,收到订阅事件也可以给用户发权益。 我们在考虑,verifyReceipt 弃用后,只靠 2 监听服务端通知来给用户发权益是否可行 |
5
brader OP @fgd 发权益肯定是没问题的,苹果也是推荐使用他们的回调通知 V2 版接口的。但我们做的不仅仅是购买支付流程,我们还做了一个数据统计功能,如果苹果废弃这个接口,我们实现起来比较麻烦,重新做成本也大
|
6
fgd 2023-09-20 22:32:29 +08:00
@brader verifyReceipt 接口拉数据。可以从 https://developer.apple.com/documentation/appstoreserverapi/get_transaction_history 这里获取,apple 也出了 sdk https://github.com/apple/app-store-server-library-python ,不过还是 beta 版本,可以参考。
|