免费翻译接口-有道接口
免费翻译接口选择输出类型和要翻译的内容获取json字符串
接口名称:免费翻译接口
接口平台:开放api
接口地址:http://japi.juhe.cn/youdao/dictionary.from
支持格式:json
请求方式:http get
请求示例:http://japi.juhe.cn/youdao/dictionary.from?key=您申请的KEY&word=苹果&only=
请求参数说明:
名称 |
类型 |
必填 |
说明 |
key |
String |
是 |
您申请的KEY |
word |
String |
是 |
要翻译的内容 |
only |
String |
否 |
dict表示只获取词典数据,translate表示只获取翻译数据,默认为都获取 |
返回参数说明:
名称 |
类型 |
说明 |
error_code |
int |
返回码 |
reason |
String |
返回理由 |
result |
String |
返回结果 |
免费翻译接口调用JSON返回示例:
{ "error_code": 0, "reason": "Success", "result": { "data": { "translation": [ "apple" ], "basic": { "phonetic": "píng guǒ", "explains": [ "[园艺] apple" ] }, "query": "苹果", "web": [ { "value": [ "Apple", "iphone", "IPOD" ], "key": "苹果" }, { "value": [ "Apple Inc", "AAPL", "Apple Computer" ], "key": "苹果公司" }, { "value": [ "Apple Media Player", "DoiceApple" ], "key": "苹果新锐" } ] } } }