Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

baidu-translate-service

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baidu-translate-service

BaiDu Universal translation API access document

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Weekly downloads
 
Created
Source

baidu-translate-service

This component library is applicable to the Nodejs server and obtains translation results through the Baidu Translation API

parameter

字段名类型是否必填描述备注
qstring请求翻译queryUTF-8编码
fromstring翻译源语言可设置为auto
tostring翻译目标语言不可设置为auto
appidstringAPPID可在管理控制台查看
keystring秘钥在控制台申请查看
ttsinteger是否显示语音合成资源0-显示,1-不显示
dictinteger是否显示词典资源0-显示,1-不显示
actioninteger判断是否需要使用自定义术语干预API1-是,0-否

Response

Reference link

Demo

var baiduTranslateService = require("baidu-translate-service");

baiduTranslateService({
  appid: "",
  key: "",
  to: "en",
  from: "auto",
  q: "今天星期几?",
}).then((result) => {
  console.log(result);
});

Keywords

FAQs

Package last updated on 01 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc