其他分享
首页 > 其他分享> > android – 如何在应用产品购买中使用订阅类型

android – 如何在应用产品购买中使用订阅类型

作者:互联网

我已经在我的应用程序中实现了订阅类型的应用程序内部产品,例如1个月或2个月的程序包,一旦用户订阅了产品,我就让服务器知道并相应地处理他/她并且它工作得非常好.

根据Google完成订阅期限:

Google auto-cut the credit and renew the package.

我的问题:如何了解下个月付款的用户?

解决方法:

您可以从Google Play获取有效购买的列表,然后相应地更新您的服务器(例如每天).

IInAppBillingService service = ...;
Bundle items = service.getPurchases(API_VERSION, PACKAGE_NAME, "subs", null);
int response = getResponseCodeFromBundle(items);
if (response != RESULT_OK) {
  // handle error
}
ArrayList<String> productIDs = items.getStringArrayList("INAPP_PURCHASE_ITEM_LIST");
// update server with active product ids

标签:android,product,in-app-purchase,in-app-billing,subscription
来源: https://codeday.me/bug/20190824/1705681.html