快速 API,谷歌翻译 post 请求与 laravel

Posted

技术标签:

【中文标题】快速 API,谷歌翻译 post 请求与 laravel【英文标题】:Rapid API, Google Translate post request with laravel 【发布时间】:2021-02-11 17:32:03 【问题描述】:

我需要在我的 Laravel 应用程序中使用 Google Translate API,get 请求工作正常,但 post 请求似乎没有,我尝试使用 Postman 并收到相同的错误消息。

这是我做的测试:

Route::get('/', function () 
    return Http::withHeaders([
        "content-type" => "application/x-www-form-urlencoded",
        "accept-encoding"=> "application/gzip",
        "x-rapidapi-key"=> "<rapid_api_key_here>",
        "x-rapidapi-host"=> "google-translate1.p.rapidapi.com",
        "useQueryString"=> true
    ])->post('https://google-translate1.p.rapidapi.com/language/translate/v2/detect', [
        "q"=> "English is hard, but detectably so",
    ]);
);

下面是 Postman 的测试:

这是我在两次测试中遇到的错误:

不知道哪里出了问题,有什么建议吗?

【问题讨论】:

【参考方案1】:

您可以尝试使用 Route::post 方法而不是 get ,因为您正在此处发出发布请求。

上下文:https://laravel.com/docs/5.0/routing#basic-routing

【讨论】:

以上是关于快速 API,谷歌翻译 post 请求与 laravel的主要内容,如果未能解决你的问题,请参考以下文章

Web API 2 入门——使用ASP.NET Web API和Angular.js构建单页应用程序(SPA)(谷歌翻译)

“谷歌翻译”与“翻译 api”

PHP Google翻译API在一个POST请求中有多个文本字符串

curl -F POST 请求翻译

用python实现百度翻译

为 Java 谷歌翻译设置 API_Key