https://www.googleapis.com/language/translate/v2?{parameters} 翻译请求的三个参数: 1)API key:需要向谷歌付费后,会给你一个key; 2)Target language:即你需要翻译的目标语言; 3)Source text string:需要翻译的文本(需要少于2k)。 2.下面是给不同的参数的一些例子,可以根据自己的需要来对该url进行传参: 1...
Click Download Private Key. This API key (written in JSON) connects your site to the Google Cloud. To enable API, download the private key. Upload the Google Translate API key to your site. Check with your hosting company where on your system to place this key. When you’ve placed the...
Google Translate API Key是一种用于访问Google Translate API的密钥,它以JSON格式提供。Google Translate API是一项提供机器翻译服务的云计算服务,可以将文本从一种语言翻译成另一种语言。 JSON格式是一种轻量级的数据交换格式,易于阅读和编写。它由键值对组成,用于表示数据结构。Google Translate API Key以JSON格式...
let googleKey = 'xxx' let projectId = 'xxx' const translate = new Translate({ projectId, key: googleKey }) const chatGoogleTranslateOnAzure = async (req, res) => { let { text = '你好', target = 'en', apiKey = 'sk-xxx' } = req.body if (apiKey === 'xxx') { const [...
googleKey ='xxx'letprojectId ='xxx'consttranslate =newTranslate({ projectId,key: googleKey })constchatGoogleTranslateOnAzure=async(req, res) => {let{ text ='你好', target ='en', apiKey ='sk-xxx'} = req.bodyif(apiKey ==='xxx') {const[translation] =awaittranslate.translate(text, ...
选择“API密钥”。你可以选择创建一个新的API密钥或使用现有的API密钥。如果你选择创建新的API密钥,则...
翻译 登录 文字 图片 文档 网站 检测语言 英语 简体中文 德语 原文 0/ 5,000 翻译结果 翻译 发送反馈 历史记录 已保存
6.创建API Key 服务器中先安装composer composer require google/cloud-translate 记得安装后的文件夹,后续脚本需要用到。 使用: PHP文件中引用翻译库的autoload路径。 require_once ('vendor/autoload.php'); use Google\Cloud\Translate\TranslateClient; 调用示例 $translate = new TranslateClient([ 'key' =>...
关于Google翻译API V2的费率限制,我们可以从以下几个方面进行回答: 费率限制:Google翻译API V2的费率限制是每天2000次免费翻译请求。超过2000次的请求将被计费,计费标准为每次请求1美元。 优势:Google翻译API V2具有高质量的翻译结果,支持100多种语言之间的翻译,并且可以通过API接口进行调用,方便快捷。 应用场景:Go...
5importcom.google.cloud.translate.Translation;67publicclassQuickstartSample {8publicstaticvoidmain(String... args)throwsException {9//Instantiates a client10Translate translate = TranslateOptions.builder().apiKey("YOUR_API_KEY").build().service();1112//The text to translate13String text = "Hello,...