简体   繁体   English

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

[英]How to implement Google Play Promo Code redeem?

To implement promo codes I've made the following steps: 要实施促销代码,我已执行以下步骤:

  1. In Google Play Console>User Acquisition>Promotions I've added the promotion 在Google Play控制台>用户获取>促销中,我添加了促销

  2. Inside the app I've used this to redirect user to the Redeem page on Google Play: 在应用程序内部,我使用它来将用户重定向到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 } 

Everything works up to a point when I actually click redeem. 当我实际单击兑换时,一切正常。 It detects the IAP I'm about to purchase for free, but it gives me the following error: 它检测到我将要免费购买的IAP,但是却出现以下错误:

BX--INV错误

Please, help 请帮忙

According to this thread , Google has responded to this error code with "This is an emerging issue that we are aware of. Our engineers are working on a resolution." 根据该线索 ,Google对错误代码的响应为“这是我们意识到的一个新兴问题。我们的工程师正在努力解决问题。”

It seems to be an issue with redeeming many digital copies of movies, and sometimes ebooks. 兑换电影和电子书的许多数字副本似乎是一个问题。 So it may be a more general problem with their system for redeeming outside content. 因此,其用于兑换外部内容的系统可能是一个更普遍的问题。

But given that was 3 days ago and this post is 6 months old, I'm not particularly hopeful. 但是鉴于那是3天前的事,而这篇文章才6个月大,所以我并不是特别希望。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM