gpt4 book ai didi

ios - 自动续订内购订阅用户流量&刷新收据

转载 作者:可可西里 更新时间:2023-11-01 04:43:35 25 4
gpt4 key购买 nike

我正在使用图书馆 RMStore - 这是我目前拥有的。

1) 购买自动续订订阅并验证退回的收据。

[[RMStore defaultStore]addPayment:[Environment environment].premiumProductIAPId success:^(SKPaymentTransaction *transaction) {
[[RMStore defaultStore].receiptVerificator verifyTransaction:transaction success:^{

//enable premium service

} failure:^(NSError *error) {

}];
} failure:^(SKPaymentTransaction *transaction, NSError *error) {

}];

2) 在每次应用启动时检查订阅在该日期是否有效,如果有效则启用高级服务

RMAppReceipt *appReceipt = [RMAppReceipt bundleReceipt];
if (appReceipt){
NSInteger isActive = [appReceipt containsActiveAutoRenewableSubscriptionOfProductIdentifier:[Environment environment].premiumProductIAPId forDate:[NSDate date]];
//enable premium service if active
}

3) 如果用户在另一台设备上启动应用程序,允许他们通过刷新收据(如果存在)并检查购买中是否有有效订阅来恢复购买。

"In most cases, all your app needs to do is refresh its receipt and deliver the products in its receipt."

- 这是来自指南。这是代码:

[[RMStore defaultStore]refreshReceiptOnSuccess:^{

if ([receipt containsActiveAutoRenewableSubscriptionOfProductIdentifier:[Environment environment].premiumProductIAPId forDate:[NSDate date]]){
//enable
}else{
//no longer active
}
} failure:^(NSError *error) {

}];

我的问题:

  • 当 RMStore 检查订阅是否有效时,它可以返回否,我查看了收据,它是正确的,我假设它没有被自动续订。当我去购买另一个订阅时,我收到一条来自 iTunes 的消息,说我已经订阅了。在随后的启动中,我看到了新的收据。这表示收据需要在启动时刷新,但我不想刷新它,因为它会弹出用户名和密码,这是不必要的。这里的最佳做法是什么?
  • 我是否以正确的方式恢复了另一台设备的订阅?似乎有时需要多次尝试才能恢复订阅。
  • 除了记录保存之外,是否还需要将订阅存储在我的服务器上?

最佳答案

我将尝试回答我的问题。

可能有更新在启动时未首先检测到,因此订阅显示为不活动。

我添加了一个观察者来监听完成的交易(RMStore 扩展了这个 StoreKit 功能)。

每次我收到此通知时,我都会检查(现已更新)收据以获取有效订阅并启用高级服务(如果有)。

- (void)storePaymentTransactionFinished:(NSNotification*)notification
{
BOOL isActive = [[RMAppReceipt bundleReceipt] containsActiveAutoRenewableSubscriptionOfProductIdentifier:[Environment environment].premiumProductIAPId forDate:[NSDate date]];
if (isActive){
//enable premium
}
}

这似乎有效。如果有人有任何其他建议,请告诉我。

关于ios - 自动续订内购订阅用户流量&刷新收据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32160123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com