📜  法语到英语 (1)

📅  最后修改于: 2023-12-03 15:40:44.157000             🧑  作者: Mango

从法语到英语的翻译 API

本 API 提供了从法语到英语的翻译服务,可通过 HTTP GET 或 POST 请求实现。支持文本、文件以及多种数据格式的翻译。返回结果支持 markdown 格式,方便显示。

请求参数

| 参数名 | 类型 | 是否必填 | 参数说明 | | ------ | ---- | -------- | -------- | | text | string | 是 | 待翻译的文本 | | from | string | 否 | 源语言,默认为法语,可选值为 fr/en/es/zh-CHS 等 | | to | string | 否 | 目标语言,默认为英语,可选值为 en/fr/es/zh-CHS 等 |

请求示例
HTTP GET
GET /translate?text=Bonjour&from=fr&to=en HTTP/1.1
Host: www.example.com
HTTP POST
POST /translate HTTP/1.1
Host: www.example.com
Content-Type: application/json

{
  "text": "Bonjour",
  "from": "fr",
  "to": "en"
}
响应参数

| 参数名 | 类型 | 参数说明 | | ------ | ---- | -------- | | code | int | 错误码,0 表示成功,非 0 表示失败 | | msg | string | 错误信息 | | content | string | 翻译结果 |

响应示例
HTTP/1.1 200 OK
Content-Type: application/json

{
    "code": 0,
    "msg": "",
    "content": "Hello"
}