PHP Google Translate Api V2使用代理
960
|
2022-12-01 14:06:32
Google Translate Api V2使用代理
谷歌翻译 api 的官方文档实在反人类
use Google\Auth\HttpHandler\Guzzle6HttpHandler;
use Google\Cloud\Translate\V2\TranslateClient;
use GuzzleHttp\Client;
$client = new TranslateClient([
'key' => env('GOOGLE_TRANSLATE_KEY'),
'httpHandler' => new Guzzle6HttpHandler(new Client([
'proxy' => 'http://127.0.0.1:7911' //代理
]))
]);