有人尝试过 google 翻译 api v2 (并让它工作)吗?
我一直在尝试使用谷歌翻译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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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>),我得到以下内容:
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:
我建议使用: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!