当我在Google Developers Console中使用Google Play Android Developer API测试购买产品的状态时,会发生这种情况,结果总是如此
{
"error": {
"errors": [
{
"domain": "androidpublisher",
"reason": "projectNotLinked",
"message": "The project id used to call the Google Play Developer API has not been linked in the Google Play Developer Console."
}
],
"code": 403,
"message": "The project id used to call the Google Play Developer API has not been linked in the Google Play Developer Console."
}
}
使用其他开发者帐户(和包名称)进行了检查,它运行正常。我确定已将Google开发者控制台的API项目与Google Play开发者控制台相关联 - > API访问设置,并尝试尽可能多地重新创建,但没有一个项目有效。
那我在这里错过了什么?除了我在Google Play控制台设置中制作的链接项目外,它的意思是“没有链接”。
答案 0 :(得分:10)
几天后,我尝试使用API Explorer来使用Android Publisher API但失败了,我请求Google提供支持并收到答案"发布API"似乎不再支持API Explorer。所以基本上我不能再使用API Explorer来检查应用内购买令牌。 希望这有助于谁在努力解决这个问题。
答案 1 :(得分:8)
万一其他人遇到相同的问题,请尝试在您的Google Play控制台帐户中添加新产品/订阅。尽管这似乎是Google服务中的某种不一致问题,但对我来说确实如此。
答案 2 :(得分:3)
确保在链接API项目之后创建InApp产品。
如果您(像我一样)先创建InApp产品,然后再链接API项目,您将不可以调用任何androidpublisher.purchases。*端点而无需获取“ projectNotLinked”错误。既不是通过代码也不是通过API浏览器。
您可以通过调用androidpublisher.inappproducts.list验证此问题。如果成功,则您的API项目已正确链接到Google Play控制台...
在Google API中重新创建用户无济于事。也不能在OAuth 2.0客户端ID或服务帐户密钥之间更改身份验证。 链接API项目后创建新的InApp产品,一切都会按预期进行。
答案 3 :(得分:2)
我也得到了这个,只是放弃了让它工作,而是切换回API的v1.1:
final URL url = new URL(
"https://www.googleapis.com/androidpublisher" +
"/v1.1/applications/" + "com.example.app.id" +
"/subscriptions/" + subcriptionId +
"/purchases/" + googlePurchaseReceipt +
"?access_token=" + googleAccessToken);
希望有人会在某个时候发布更好的答案,我们都可以切换到API的v2。
答案 4 :(得分:2)
您需要在设置 - >下的Google Play 开发者控制台中链接项目。 Api Access。
请在此处查看我的完整答案:https://stackoverflow.com/a/25825907/1745234
答案 5 :(得分:1)
API Explorer似乎不适用于API的v2。已报告错误:https://code.google.com/p/google-apis-explorer/issues/detail?id=268
答案 6 :(得分:1)
我有完全一样的问题。但是我已经解决了。 [请求]: -您必须链接项目Google Play开发者控制台 在创建inapp购买之前
答案 7 :(得分:0)
使用“SERVICE ACCOUNT”进行身份验证时,我收到了相同的错误消息。但是当使用“已安装的应用程序”类型的OAuth客户端时,一切正常。修复: