有人尝试过 google 翻译 api v2 (并让它工作)吗?

发布于 2024-11-06 20:20:19 字数 395 浏览 0 评论 0原文

我一直在尝试使用谷歌翻译API v2,但我无法让它工作。

这是我当前的代码: http://juzcode.com/z.html (只需访问页面并查看源代码)

我可以使用谷歌翻译API v1:http://juzcode.com/y.html

有谁知道为什么 google 在页面 http://juzcode.com/z.html?

I've been experimenting with google translate api v2 but I couldn't get it working.

this is the current code i have: http://juzcode.com/z.html (just visit the page and view source)

I can use google translate api v1 though: http://juzcode.com/y.html

Does anyone know why google is rejecting my request in the page http://juzcode.com/z.html?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奢望 2024-11-13 20:20:19

API v2 使用不同的系统来生成和验证密钥,因此您需要获取新密钥。前往 http://code.google.com/apis/console/ 并注册一。

如果您想要更简单的测试方法,可以直接访问该 URL。因此,如果我转到 https://www.googleapis.com/language/translate/v2?q=hello%20world&source=en&target=de&key=(my key>),我得到以下内容:

{
 "data": {
  "translations": [
   {
    "translatedText": "Hallo Welt"
   }
  ]
 }
}

API v2 uses a different system for generating and validating keys, so you need to get a new key. Go to http://code.google.com/apis/console/ and sign up for one.

If you want an easier way of testing this, you can go to the URL directly. So if I go to https://www.googleapis.com/language/translate/v2?q=hello%20world&source=en&target=de&key=(my key>), I get the following:

{
 "data": {
  "translations": [
   {
    "translatedText": "Hallo Welt"
   }
  ]
 }
}
尾戒 2024-11-13 20:20:19

我建议使用:http://code.google.com/p/jquery-translate/

我在 v1 被弃用之前使用了他们的代码,我只需要更新他们提供的 query.translate.js 文件,并在我之前的内容中添加一行代码: $.translate.load('API-KEY '); 并且效果非常好!

I recommend using: http://code.google.com/p/jquery-translate/

I used their code before v1 was deprecated and I only had to update the query.translate.js file they provide and add one line of code to what I previously had: $.translate.load('API-KEY'); and it worked perfectly!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文