Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用测试谷歌结帐帐户,当我尝试购买时,我在订单被授权时收到错误(显示“授权付款”),这通常发生在下订单后大约 30 秒(即“接受并购买”已被点击):
“无法处理您的付款。请登录您的谷歌钱包帐户请求支持”
任何想法为什么会发生这种情况?
您是否已将银行信息添加到商家帐户?你还在遇到这个问题吗?
我遇到了同样的问题,当我在 BillingService.Java 的 makeRequestBundle() 方法中更改 API 版本号时,问题得到了解决:
request.putInt(Consts.BILLING_REQUEST_API_VERSION, 1);
至
request.putInt(Consts.BILLING_REQUEST_API_VERSION, 2);
希望能帮助到你!