我有相同的代码(或多或少)在Java中工作正常,但是当我用javascript编写它时,我最终得到了404。 我不知道我做错了什么,这让我发疯了!
gapi.client.load('translate', 'v2', function () {
gapi.client.language.languages.list().execute(function (response) {
response.data.forEach(function(language){
console.log(JSON.stringify(language));
});
});
"语言":
{"code":404,"message":"Not Found","data":[{"domain":"global","reason":"notFound","message":"Not Found"}],"error":{"code":404,"message":"Not Found","data":[{"domain":"global","reason":"notFound","message":"Not Found"}]}}
我可以在控制台中看到以下要https://content.googleapis.com/rpc?key=MY_API_KEY
的 POST 数据:
[{"jsonrpc":"2.0","id":"gapiRpc","method":"language.languages.list","apiVersion":"v1"}]
应该说v1吗?
相比之下,REST URL是https://www.googleapis.com/language/translate/v2/languages?key=MY_API_KEY
的(它是一个GET),它工作正常。
你是对的,这是gapi.client.load中的一个错误。此错误已修复,您不应再遇到 404。