使用google翻译api

下载谷歌组件

composer require google/cloud-debugger

如果中途下载很慢,那么请切换中文镜像

如果中途报错mismatch啥啥啥

那是composer 缓存太小 

composer config -l

composer config --global cache-files-maxsize 1024MiB   

 

支持语言:

https://cloud.google.com/translate/docs/languages?hl=zh-CN

接口:

https://cloud.google.com/translate/docs/?hl=zh-CN

案例:

https://cloud.google.com/translate/docs/translating-text?hl=zh-CN#translate_translate_text-php

 

Uncaught Google\Cloud\Core\Exception\ServiceException: { "error": { "code": 403, "message": "The request is missing a valid API key.", "errors": [ { "message": "The request is missing a valid API key.", "domain": "global", "reason": "forbidden" } ], "status": "PERMISSION_DENIED" } } 

45美金/小时  GG

  1. 点击即可执行以下操作:

     

    您可以随时在 GCP Console 中查看和管理这些资源。

    • 创建或选择项目。
    • 启用该项目Cloud Translation API。
    • 创建服务帐号。
    • 下载 JSON 格式的私钥。
  2. 将环境变量 GOOGLE_APPLICATION_CREDENTIALS 设置为包含服务帐号密钥的 JSON 文件的文件路径。此变量仅适用于当前的 shell 会话,因此,如果您打开新的会话,请重新设置该变量。                                                                         

composer require google/cloud-translate


# Includes the autoloader for libraries installed with composer
require __DIR__ . '/vendor/autoload.php';

# Imports the Google Cloud client library
use Google\Cloud\Translate\TranslateClient;

# Your Google Cloud Platform project ID
$projectId = 'YOUR_PROJECT_ID';

# Instantiates a client
$translate = new TranslateClient([
    'projectId' => $projectId
]);

# The text to translate
$text = 'Hello, world!';
# The target language
$target = 'ru';

# Translates some text into Russian
$translation = $translate->translate($text, [
    'target' => $target
]);

echo 'Text: ' . $text . '
Translation: ' . $translation['text'];

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值