开发者

Do auto-renewable subscriptions send an SKPaymentTransactionStatePurchased transaction when they auto-renew?

开发者 https://www.devze.com 2023-02-19 14:15 出处:网络
Does the AppStore send out a transaction when it auto-renews an auto-renewable subscription?If so, can it reliably be detected by an App the next time the App loads if it sets itself as an observer:

Does the AppStore send out a transaction when it auto-renews an auto-renewable subscription? If so, can it reliably be detected by an App the next time the App loads if it sets itself as an observer:

[[SKPaymentQueue defaultQueue] addTransactionObserver:self];

Will the new auto-renewed transaction make a call to:

-(void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions

with transaction.transactionState==SKPaymentTransactionStatePurchased?

If so, great. If not, does this mean you must examine all transactions every time an auto-renewable subscript开发者_开发问答ion approaches expiration using:

 [[SKPaymentQueue defaultQueue] restoreCompletedTransactions]; 

Thanks...


After some research I can answer my own question and raise another related issue. The App Store calls the paymentQueue and posts a transaction. The transaction is posted with transaction.transactionState==SKPaymentTransactionStateRestored, not transaction.transactionState==SKPaymentTransactionStatePurchased.

The issue is that unfortunately this gets posted only to one device. A second device does not get the posting. Therefore, to detect the auto-renewal, or rather to detect the lack of an autorenewal and deny the device a continuing subscription, you have to do a restoreCompletedTransaction or "http post a 64-bit encoded JSON containing the last transaction". If the fomer, the user needs to give their password; that's intrusive. If the latter, lots of additional coding is required. So, my question is...why doesn't StoreKit have a command:

(does not exist) - [[SKPaymentQueue defaultQueue] restoreAttachedTransactions:(NSArray *)transactions];

This command would flow just like a restoreCompletedtRansactions but it would only restore the attached transactions and, most importantly, it would not require log-in by the user. It has the same security protection as the "http post a 64-bit encoded JSON containing the last transaction" and it allows the entire In App Purchase process to be done in StoreKit rather than requiring web posting code.

If this makes sense to you, please suggest how to get this to Apple....thanks.

0

精彩评论

暂无评论...
验证码 换一张
取 消