当我调用API验证购买令牌时,显示错误消息"wrong application"。我该如何解决这个问题?
Error message "wrong application" is displayed when I call the API for verifying the purchase token. How do I resolve this?
我已经在我的应用中集成了华为应用内购,参考官方文档调用了{rootUrl}/applications/purchases/tokens/verify API,但是报错{"responseCode":"8","responseMessage ":"wrong application"} 被退回。(文档 link:https://developer.huawei.com/consumer/en/doc/development/HMSCore-References-V5/api-order-verify-purchase-token-0000001050746113-V5 )
为尽量减少对用户隐私数据(包括订单数据)的访问,华为仅保留用户最近购买的产品。用户购买商品并完成支付后,商品发货并调用consumeOwnedPurchase
API,订单完成并关闭。 在这种情况下,不要为较早的订单调用验证API。否则会报错。
我已经在我的应用中集成了华为应用内购,参考官方文档调用了{rootUrl}/applications/purchases/tokens/verify API,但是报错{"responseCode":"8","responseMessage ":"wrong application"} 被退回。(文档 link:https://developer.huawei.com/consumer/en/doc/development/HMSCore-References-V5/api-order-verify-purchase-token-0000001050746113-V5 )
为尽量减少对用户隐私数据(包括订单数据)的访问,华为仅保留用户最近购买的产品。用户购买商品并完成支付后,商品发货并调用consumeOwnedPurchase
API,订单完成并关闭。 在这种情况下,不要为较早的订单调用验证API。否则会报错。