练习数据
1、获取考生待参加练习
获取考生待参加练习
获取考生待参加练习列表。如在第三方应用或App中,需要展示考试云待参加练习列表。
接口地址:https://api.kaoshiyun.com.cn/api/v5/examaction.ashx?token=[Token]&action=getUserExer&account=[account]&pageIndex=[pageIndex]&pageSize=[pageSize]
请求方式:GET或POST
参数说明:
参数名称 | 说明 |
token | 接口调用凭证,2小时内有效,请注意时效性 |
action | getUserExer |
account | 考生账号 |
pageIndex | 分页页码,默认第1页 |
pageSize | 每页条数,默认10条 |
返回值说明:
1、执行成功
JSON返回值格式
{ "totalCount": 2, "currentPageIndex": 1, "items": [ { "examID": "661502", "examName": "会计基础练习A卷", "beginTime": "2021-04-25 09:30", "endTime": "2021-05-02 09:30", "examUrl": "https://练习网址/v5/exam/661502" }, { "examID": "d7310f", "examName": "会计基础章节练习", "beginTime": "2021-03-18 17:12", "endTime": "2021-07-13 17:12", "examUrl": "https://练习网址/v5/exer/d7310f" } ] }
返回值参数说明
参数名称 | 说明 |
totalCount | 总记录数 |
currentPageIndex | 当前页码 |
examID | 练习编号 |
beginTime | 练习开始时间 |
endTime | 练习结束时间 |
examURL | 练习入口链接,点击链接进入练习 |
2、执行失败,返回值
{"errcode":"40006","errmsg":"AccessToken has expired"}
{"errcode":"40501","errmsg":"account参数不允许为空"}
{"errcode":"40502","errmsg":"account:[账号]在考试云中不存在"}