如何将非消费品更改为可自动更新的订阅并保留旧用户?

时间:2022-06-18 22:49:24

I've had in-app purchase feature with non-consumable pricing in Apple Store. And the app has pricing to use it.

我在Apple Store中有非消费品定价的应用内购买功能。该应用程序有定价使用它。

How to change non-consumable to auto-renewable subscriptions? Somehow keep user who purchased the app. And new user charge with auto-renewable subscriptions.

如何将非消耗品更改为可自动更新的订阅?以某种方式保持购买该应用程序的用户。新用户通过自动续订订阅收费。

1 个解决方案

#1


1  

No you can't change it, just make sure in your App, you use
[[SKPaymentQueue defaultQueue]restoreCompletedTransactions];

不,你不能改变它,只需确保在你的应用程序中,你使用[[SKPaymentQueue defaultQueue] restoreCompletedTransactions];

Restore old purchase and check if you find that the user has purchased the non-consumable product (old users), restore the product for free. If user has not purchased that product before (new users), ask them to purchase the new auto-renewable subscriptions.

恢复旧购买并检查您是否发现用户购买了非消费品(旧用户),免费恢复产品。如果用户之前没有购买过该产品(新用户),请让他们购买新的自动续订订阅。

#1


1  

No you can't change it, just make sure in your App, you use
[[SKPaymentQueue defaultQueue]restoreCompletedTransactions];

不,你不能改变它,只需确保在你的应用程序中,你使用[[SKPaymentQueue defaultQueue] restoreCompletedTransactions];

Restore old purchase and check if you find that the user has purchased the non-consumable product (old users), restore the product for free. If user has not purchased that product before (new users), ask them to purchase the new auto-renewable subscriptions.

恢复旧购买并检查您是否发现用户购买了非消费品(旧用户),免费恢复产品。如果用户之前没有购买过该产品(新用户),请让他们购买新的自动续订订阅。