课堂练习详情查询
更新时间:2020-8-17
接口描述
该接口用于查询课堂练习详情。
请求地址
https://spark.bokecc.com/api/exercise/get
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
userid | String | 是 | 用户ID。 |
videoid | String | 是 | 视频ID。 |
请求示例
https://spark.bokecc.com/api/exercise/get?videoid=6D080640AF53B5D363835A29B2A11xxx&time=1671442654314&userid=CC443A6686737xxx&hash=D2F221B462EAEB83282530590FE32076
返回数据
名称 | 类型 | 说明 |
---|---|---|
exercises | Array | 详情。 |
exercises说明
名称 | 类型 | 说明 |
---|---|---|
id | String | 练习ID。 |
title | String | 练习名称。 |
appeartime | Integer | 练习出现的时间。 |
questions | Array | 信息。 |
questions说明
名称 | 类型 | 说明 |
---|---|---|
id | String | 题目ID。 |
type | Integer | 题目类型(0:单选, 1:多选,2:填空)。 |
content | String | 题目内容。 |
totalnum | Integer | 答题次数。 |
rightnum | Integer | 答对次数。 |
explaininfo | String | 题目解析。 |
answers | Array | 答案。 |
answers说明
名称 | 类型 | 说明 |
---|---|---|
id | String | 答案ID。 |
content | String | 答案内容。 |
isright | Integer | 是否正确(0:否,1:是)。 |
返回示例
{
"result": "OK",
"exercises": [
{
"id": "F3CEA9F3FF0D306F",
"title": "课堂练习1",
"appeartime": 11,
"questions": [
{
"id": "CF470410D36DE9EE",
"type": 0,
"content": "单选",
"explaininfo": "题目解析",
"totalnum": 0,
"rightnum": 0,
"answers": [
{
"id": "A5111787F6CBE792",
"content": "A、选项一",
"isright": 0
},
{
"id": "B292E5F26254AF55",
"content": "B、选项二",
"isright": 0
},
{
"id": "8BA69B7A5CC92026",
"content": "C、选项三",
"isright": 1
},
{
"id": "11CDD78B4F830B15",
"content": "D、选项四",
"isright": 0
}
]
}
]
}
]
}