如何阻止已消费的 Google Play IAP(应用内产品)退款?

问题描述 投票:0回答:1

我已经集成了 Google Play Billing 库,用于在 Android 应用中销售应用内产品。

此IAP是在App内购买点数,只能在App内使用。我还通过如下调用 consumeAsync 在应用程序中消费了购买的商品

ConsumeParams consumeParams = 
  ConsumeParams.newBuilder()
     .setPurchaseToken(purchase.getPurchaseToken())
     .build();

ConsumeResponseListener listener = (billingResult, purchaseToken) -> {
        if (billingResult.getResponseCode() == BillingClient.BillingResponseCode.OK) {
            // Handle the success of the consume operation.
            NLog.d(TAG, "Product consumed. Purchase completed!");                
        } else {
            NLog.e(TAG, "Failed to consume product.");
        }
    };

billingClient.consumeAsync(consumeParams, listener);

发生了几起购买 IAP 的事件,即使在付款 24 小时后,Google 也已退款。

一些用户滥用退款政策,快速消耗给定的信用额度,然后要求退款。

如何避免这种误用?

有没有办法阻止消耗的 IAP 的退款?

android in-app-purchase in-app-billing google-play-billing
1个回答
-2
投票

有什么更新吗?我面临同样的问题。用户滥用退款政策。我可以阻止退款吗?

© www.soinside.com 2019 - 2024. All rights reserved.