Google 播放订阅订单不存在
Google Play Subscription orderId not present
我们已经在我们的应用程序中完成 Google Play 订阅 v3 的实施,我们现在正在 Play 商店中使用 Alpha 版本进行测试。一切正常,除了 orderId
,not 作为 Google Play API JSON 响应的一部分返回设备。 token
按预期返回。发生这种情况是因为我们正在使用 Alpha 测试进行测试,还是另一个问题?如果是这样,orderId
是否仍应由 Google Play API 发送,因为 token
已经是?
很明显,这是在使用测试帐户许可证对订阅进行预发布测试时的预期行为,Google Play API 不会发送 orderId,因为没有实际的现实生活购买正在制作,因此 Google 电子钱包不会创建任何订单。这意味着应用程序没有收到 orderId。
Google Play 开发者支持代表对此事的官方回应:
Currently, test subscriptions will not appear in your Google Wallet
Merchant Center because they are not actually assigned valid order
IDs. I'm sorry for the confusion.
To manage test subscriptions, you will instead need to use the
Developer API to refund, defer, cancel, or revoke test subscriptions.
To take any of these actions, you will simply need the app's package
name, the subscription ID, and the purchase token.
当被问到 not actually assigned valid order IDs
是什么意思时,
As per your concern, since it's test purchase, there won't be any
order ID. The order ID will however only exists when you move to
production.
我们已经在我们的应用程序中完成 Google Play 订阅 v3 的实施,我们现在正在 Play 商店中使用 Alpha 版本进行测试。一切正常,除了 orderId
,not 作为 Google Play API JSON 响应的一部分返回设备。 token
按预期返回。发生这种情况是因为我们正在使用 Alpha 测试进行测试,还是另一个问题?如果是这样,orderId
是否仍应由 Google Play API 发送,因为 token
已经是?
很明显,这是在使用测试帐户许可证对订阅进行预发布测试时的预期行为,Google Play API 不会发送 orderId,因为没有实际的现实生活购买正在制作,因此 Google 电子钱包不会创建任何订单。这意味着应用程序没有收到 orderId。
Google Play 开发者支持代表对此事的官方回应:
Currently, test subscriptions will not appear in your Google Wallet Merchant Center because they are not actually assigned valid order IDs. I'm sorry for the confusion.
To manage test subscriptions, you will instead need to use the Developer API to refund, defer, cancel, or revoke test subscriptions. To take any of these actions, you will simply need the app's package name, the subscription ID, and the purchase token.
当被问到 not actually assigned valid order IDs
是什么意思时,
As per your concern, since it's test purchase, there won't be any order ID. The order ID will however only exists when you move to production.