2

我正在构建一个应用程序,它在应用程序中提供 30 天的高级服务订阅。我熟悉应用内购买(消耗品),并为此做好了一切准备。但是,我还没有找到任何好的教程或解释验证自动更新订阅的正确程序。

谁能指出我正确的方向?我想做的是有这样的订阅设置:

  • 用户购买应用内订阅并通过验证
  • 订阅结束日期(购买后 30 天)与用户的帐户信息一起添加到网络数据库
  • 如何检测订阅何时更新,以便我可以更新网络数据库

更新

所以我已经弄清楚了原始的购买和收据验证,所以一切都很好。然后通过从收据数据中获取“expires_date”的值来获取过期日期。

我现在需要完成的是在应用加载时检查所有已完成交易的最佳方式(包括任何自动续订的订阅),以便我可以解锁高级服务。使用“restoreCompletedTransactions”可以让我接收旧的收据数据,但它会强制用户输入密码,我想避免这种情况。有哪些替代方案?

4

1 回答 1

1

a user purchases a product and you save the receipt. keep track of a timestamp so you know how long the subscription is valid for. on each launch you validate the receipt. you will always get the latest receipt so you know whether the product was renewed. using the timestamp you can make sure the user doesnt get access after their subscription has cancelled.

于 2013-03-11T11:25:12.400 回答