android – 如何在Google Play中区分用户是否处于订阅试用期?

我正在实施一项服务器端服务,用于检查用户的Google Play订阅状态.我使用
Android Pubisher API(
https://developers.google.com/android-publisher/api-ref/purchases/subscriptions/get)来检查订阅状态.虽然,我无法理解如何区分用户是否处于试用期或者他是否已经付款(我需要它用于分析,归因于收入)?

如何才能做到这一点?

最佳答案 当您从服务器验证订阅购买时,您将获得以下订阅资源:

{
  "kind": "androidpublisher#subscriptionPurchase",
  "startTimeMillis": long,
  "expiryTimeMillis": long,
  "autoRenewing": boolean,
  "priceCurrencyCode": string,
  "priceAmountMicros": long,
  "countryCode": string,
  "developerPayload": string,
  "paymentState": integer,
  "cancelReason": integer,
  "userCancellationTimeMillis": long
}

paymentState值有3个订阅状态:

> 0 – 待付款
> 1 – 收到付款
> 2 – 免费试用

您随时可以调用Google Play API来检查此状态.
API文档:https://developers.google.com/android-publisher/api-ref/purchases/subscriptions#resource

点赞