课堂练习题目详情查询
更新时间:2020-8-17
接口描述
该接口用于查询课堂练习题目详情。
请求地址
https://spark.bokecc.com/api/exercise/question/get
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
⽤户ID。 |
videoid |
String |
是 |
视频ID。 |
exerciseid |
String |
是 |
练习ID。 |
questionid |
String |
是 |
题目ID。 |
请求示例
https://spark.bokecc.com/api/exercise/question/get?questionid=F13A62BE66C94798&exerciseid=5BAE8837C899Bxxx&videoid=6D080640AF53B5D363835A29B2A11xxx&time=1671443882921&userid=CC443A66867376BF&hash=8B025ECD5DFE85B0ACF963063158C89A
返回数据
名称 |
类型 |
说明 |
question |
Object |
详情。 |
question说明
名称 |
类型 |
说明 |
id |
String |
题目ID。 |
type |
Integer |
题目类型(0:单选,1:多选,2:填空)。 |
content |
String |
题目内容。 |
answers |
String |
答案。 |
totalnum |
Integer |
答题次数。 |
rightnum |
Integer |
答对次数。 |
explaininfo |
String |
题目解析。 |
answers说明
名称 |
类型 |
说明 |
id |
String |
答案ID。 |
content |
String |
答案内容。 |
isright |
Integer |
是否正确(否:0,是:1)。 |
返回示例
{
"result": "OK",
"question": {
"id": "CF470410D36DE9EE",
"type": 0,
"content": "问题1",
"explaininfo": "问题1注释",
"totalnum": 0,
"rightnum": 0,
"answers": [
{
"id": "1A4BAD48FFBD34F2",
"content": "A、选项一",
"isright": 0
},
{
"id": "55286BB5EC45452A",
"content": "B、选项二",
"isright": 0
},
{
"id": "DBD7F06C96C6368E",
"content": "C、选项三",
"isright": 1
},
{
"id": "EB680A6F8711521D",
"content": "D、选项四",
"isright": 0
}
]
}
}