https://github.com/shevonkuan/translate-server
一个基于Golang构建的集成翻译api服务端。 An integrated translation api server built on Golang.
https://github.com/shevonkuan/translate-server
api-server deepl-translation-api golang google-translate-api translator
Last synced: 9 months ago
JSON representation
一个基于Golang构建的集成翻译api服务端。 An integrated translation api server built on Golang.
- Host: GitHub
- URL: https://github.com/shevonkuan/translate-server
- Owner: ShevonKuan
- License: gpl-3.0
- Created: 2023-03-06T07:54:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-25T09:15:18.000Z (over 2 years ago)
- Last Synced: 2024-06-21T00:14:08.837Z (about 2 years ago)
- Topics: api-server, deepl-translation-api, golang, google-translate-api, translator
- Language: Go
- Homepage: https://translate-server-five.vercel.app
- Size: 76.2 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Translate-Server

## Description
### Support Translate Engine
- [x] [DeepL](https://www.deepl.com/translator)
- [x] [Google](https://translate.google.com)
- [ ] [tencent](https://fanyi.qq.com/)
- [ ] [baidu](https://fanyi.baidu.com/)
- [ ] [youdao](https://fanyi.youdao.com/)
- [ ] others..
## 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:
```json
{
"text": "Hello world",
"source_lang": "en",
"target_lang": "zh"
}
```
##### Response
```json
{
"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:
```json
{
"text": "Hello world",
"source_lang": "en",
"target_lang": "zh"
}
```
##### Response
```javascript
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](https://github.com/ShevonKuan/translate-server/contributors)