有没有办法从应用程序内兑换促销代码?

时间:2016-03-14 23:12:32

标签: android in-app-purchase google-play promotion-code

从今年年初开始,可以使用应用的促销代码:Create promotions

如页面In-app Promotions所述,促销代码也可以在应用内兑换。

它还说"你也可以将SKU从Play商店中取出,所以获得该商品的唯一方法就是输入SKU的促销代码。"。

这就是我想要的应用内商品:只允许用户通过在应用内输入促销代码来获取应用内商品,并且不允许用钱购买。

如何做到这一点?

1 个答案:

答案 0 :(得分:0)

通过分析Play商店应用,我发现当前版本打开了"兑换您的代码"具有以下意图的对话框:

try {
  final Uri redeemUri = Uri.parse("https://play.google.com/redeem");
  final Intent redeemIntent = new Intent(Intent.ACTION_VIEW, redeemUri);
  startActivity(redeemIntent);
} catch (android.content.ActivityNotFoundException e) {
  // Play Store app is not installed
}

请注意,任何新版本的Play商店都可能会发生这种情况。