取消 Google 使用结算 API 的 Play 订阅?
Cancel Google Play subscription with Billing API?
有没有办法使用 Google Play Billing API 取消订阅,特别是使用 BillingClient,或者我必须通过 Google Play Developer [=14] =]?您不能以订阅的方式取消订阅,这似乎违反直觉,但我找不到取消订阅的方法。请帮忙
BillingClient
不支持取消(不太确定 Google 的推理是什么)。
您将不得不使用 Purchases.subscriptions:cancel。我不确定,但我相信只有应用程序发布者才能调用 API; IOW,用户不能代表自己调用它。显然必须有一个 API 可以处理用户的 Google 帐户凭据,但我不知道它是什么。
Google Play 团队于 2018 年 6 月 13 日发送的一封电子邮件建议用户按以下方式之一管理他们的订阅:
On Android, open the Google Play Store, then tap Menu > Subscriptions.
On a computer, go to play.google.com, then in the left menu click My subscriptions.
On either Android or a computer, use the URL http://play.google.com/store/account/subscriptions to open the user's list of subscriptions.
For active subscriptions, use the deep-link http://play.google.com/store/account/subscriptions?package=samplePackage&sku=sampleSKU with your package and SKU name to directly open the page to manage the user's specific subscription. Learn more about the manage subscription deep-link by checking out our documentation for subscription-specific features.
有没有办法使用 Google Play Billing API 取消订阅,特别是使用 BillingClient,或者我必须通过 Google Play Developer [=14] =]?您不能以订阅的方式取消订阅,这似乎违反直觉,但我找不到取消订阅的方法。请帮忙
BillingClient
不支持取消(不太确定 Google 的推理是什么)。
您将不得不使用 Purchases.subscriptions:cancel。我不确定,但我相信只有应用程序发布者才能调用 API; IOW,用户不能代表自己调用它。显然必须有一个 API 可以处理用户的 Google 帐户凭据,但我不知道它是什么。
Google Play 团队于 2018 年 6 月 13 日发送的一封电子邮件建议用户按以下方式之一管理他们的订阅:
On Android, open the Google Play Store, then tap Menu > Subscriptions.
On a computer, go to play.google.com, then in the left menu click My subscriptions.
On either Android or a computer, use the URL http://play.google.com/store/account/subscriptions to open the user's list of subscriptions.
For active subscriptions, use the deep-link http://play.google.com/store/account/subscriptions?package=samplePackage&sku=sampleSKU with your package and SKU name to directly open the page to manage the user's specific subscription. Learn more about the manage subscription deep-link by checking out our documentation for subscription-specific features.