如何实施Google Play促销代码兑换?

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

为了实现促销代码,我做了以下步骤:

  1. 在Google Play控制台>用户获取>促销活动中,我添加了促销活动
  2. 在应用程序内部,我使用此功能将用户重定向到Google Play上的“兑换”页面: try { final Uri redeemUri = Uri.parse("https://play.google.com/redeem"); final Intent redeemIntent = new Intent(Intent.ACTION_VIEW, redeemUri); activity.startActivity(redeemIntent); } catch (android.content.ActivityNotFoundException e) { // Play Store app is not installed }

当我实际点击兑换时,一切都达到了一定程度。它会检测我即将免费购买的IAP,但它会给我以下错误:

BX--INV error

请帮忙

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

根据this thread的说法,Google已对此错误代码作出回应:“这是一个我们都知道的新兴问题。我们的工程师正在制定解决方案。”

这似乎是兑换许多电影数字拷贝,有时是电子书的问题。因此,用于兑换外部内容的系统可能是更普遍的问题。

但鉴于那是3天前,这篇文章是6个月大,我不是特别有希望。

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