Skip to content

ShevonKuan/translate-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Translate-Server

translate-server

Description

Support Translate Engine

Usage

Translate API

Request

  • method: POST
  • url: /translate or https://translate-server-five.vercel.app/api/translate
  • params: engine: google or deepl
  • body application/json:
{
    "text": "Hello world",
    "source_lang": "en",
    "target_lang": "zh"
}
Response
{
    "alternatives": ["你好世界", "世界你好"],
    "code": 200,
    "data": "你好世界"
}

Request(JSONP)

You can use JSONP to request the api, just add callback param to the url, like this:

  • method: POST
  • url: /translate?callback=tr (In order to avoid abusing the public API, the vercel version of the API is not supported for jsonp requests.)
  • params:
    • engine: google or deepl
  • body application/json:
{
    "text": "Hello world",
    "source_lang": "en",
    "target_lang": "zh"
}
Response
tr({
    alternatives: ["你好世界", "世界你好"],
    code: 200,
    data: "你好世界",
});

Translate XML

Always used to translate RSS feed:

  1. Add prefix https://translate-server-five.vercel.app/api/rss?url= to the original rss feed url. e.g. http://export.arxiv.org/rss/cs.DC -> https://translate-server-five.vercel.app/api/rss?url=http://export.arxiv.org/rss/cs.DC
  2. Add &engine=deepl or &engine=google to the end of the url. The default engine is google. if you want to specify the engine, you should run your own instance of the server instead of using the vercel one, like this: http://127.0.0.1:1188/rss?url=http://export.arxiv.org/rss/cs.DC&engine=deepl

Run with Docker

// TODO

Author

Shevon Kwan © translate-server Contributors