[TOC]
简要描述
- 消灭单词-根据book和目录code获取目录下英文单词列表-接口
请求URL
/zjhlapi/courseInfo/getEngWords
请求方式
请求头设置
参数名 |
必选 |
类型 |
说明 |
timestamp |
是 |
string |
当前时间的时间戳 |
appId |
是 |
string |
app标识 |
nonce |
是 |
string |
随机生成的6位字符串 |
sign |
是 |
string |
由appId,appSecret,nonce,timestamp通过sha1加密得到的sign标识 |
请求参数
参数名 |
必选 |
类型 |
说明 |
备注 |
bookCode |
是 |
string |
书本编码 |
chapterCode |
是 |
string |
章code |
contentsCode |
是 |
string |
节code |
请求示例
{
"bookCode": "",
"chapterCode": "",
"contentsCode": ""
}
返回示例
{
"currentPage": 0,
"dataList": [
{
"uuid": "", 单词卡片id,唯一标识
"wordsCode": "", 单词code
"wordsName": "", 单词name
"wordsPronounces": [
{
"audioFrequency": "", 单词音频url
"phonogram": "", 单词音标
"type": 0 单词卡片id,唯一标识
}
]
}
],
"pageSize": 0,
"totalCount": 0
}
备注