是否有快速替代已弃用的“SKPaymentTransaction.transactionReceipt”?
Posted
技术标签:
【中文标题】是否有快速替代已弃用的“SKPaymentTransaction.transactionReceipt”?【英文标题】:Is there a fast replacement for deprecate `SKPaymentTransaction.transactionReceipt`? 【发布时间】:2014-05-15 13:41:45 【问题描述】:是否有快速替代已弃用的 SKPaymentTransaction.transactionReceipt?
完整代码:
// saves a record of the transaction by storing the receipt to disk
- (void)recordTransaction:(SKPaymentTransaction *)transaction
if ([transaction.payment.productIdentifier isEqualToString:[self getProductId:gFullVersion]])
// save the transaction receipt to disk
[[NSUserDefaults standardUserDefaults] setValue:transaction.transactionReceipt forKey:[self getProductId:gFullVersion]];
[[NSUserDefaults standardUserDefaults] synchronize];
【问题讨论】:
【参考方案1】:正确答案应该是:
[NSData dataWithContentsOfURL:[[NSBundle mainBundle] appStoreReceiptURL]]
以及完整的代码:
// saves a record of the transaction by storing the receipt to disk
- (void)recordTransaction:(SKPaymentTransaction *)transaction
if ([transaction.payment.productIdentifier isEqualToString:[self getProductId:gFullVersion]])
// save the transaction receipt to disk
[[NSUserDefaults standardUserDefaults] setValue:[NSData dataWithContentsOfURL:[[NSBundle mainBundle] appStoreReceiptURL]] forKey:[self getProductId:gFullVersion]];
[[NSUserDefaults standardUserDefaults] synchronize];
【讨论】:
@MaciejSwic 如何在不使用已弃用的 transactionReceipt 属性的情况下验证单个交易的收据? @user1681701 所有收据都在捆绑包中,iirc 你得到一个数组或字典,循环遍历它,你也会在其中找到所有 IAP 收据。 否决,此代码 sn-p 不能完全替代检索与单个交易相关的收据信息。 也被否决了。根本不回答问题。以上是关于是否有快速替代已弃用的“SKPaymentTransaction.transactionReceipt”?的主要内容,如果未能解决你的问题,请参考以下文章
替代Apache Camel中已弃用的XmlJsonDataFormat