Google Play控制台操作需要更新服务器端结算确认API,但该API已经在使用最新版本

我们最近在Google Play控制台中收到此错误:

actION REQUIRED: Your server-side billing confirmations will stop working on December 1,2019
Your app is using an old version of the Google Play Developer API. From December 1 2019,versions 1 and 2 of this API will no longer be available,and any calls to these versions will fail. Update to version 3 before this date. Note that this is not related to the AIDL/Billing library deprecation. Learn more

但是,我们当前正在服务器中使用正确的API版本3来验证我们的应用内购买帐单收据。我们正在使用的应用程序内购买库还在客户端公开了该功能,并且我已经确认其源代码也正在使用v3。两者都向https://www.googleapis.com/androidpublisher/v3/applications/...

发出请求

我们已经在生产中验证了真实的采购,因此我知道它的功能,并且我试图了解问题的根源。

我还读过here,这可能是由于第三方插件引起的。

如果有什么我们最近整合了Facebook SDK,它说它可以为我们进行android收据验证,以确保它没有报告任何欺诈/沙盒购买。

还有其他人遇到过此操作所需的标志吗?如果是这样,您采取了哪些步骤来消除/解决该问题,它们是否与使用androidpublisher API的第三方插件相关?

amico1969 回答:Google Play控制台操作需要更新服务器端结算确认API,但该API已经在使用最新版本

可能正在使用

https://www.googleapis.com/androidpublisher/v1/applications/

要验证购买,请用 V3

替换 V1

https://developers.google.com/android-publisher/api-ref/purchases/subscriptions/get

用于验证服务器端的采购收据。

本文链接:https://www.f2er.com/3055911.html

大家都在问