Toggle navigation
Toggle navigation
This project
Loading...
Sign in
liuming
/
developer-docs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
JiangTengfei
2016-06-07 12:02:02 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
329120201dd99a0e987c06c46f84ab67b269fa5c
32912020
1 parent
a00fa0a7
Updated 在线授课接口定义 (markdown)
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
在线授课接口定义.md
在线授课接口定义.md
View file @
3291202
...
...
@@ -509,3 +509,44 @@ Response:
"returnMsg"
:
"success"
}
```
# 11.学生进入课堂状态回调接口-学生端调用
> `status_type`参数说明:老师点击`立即上课`后学生收到推送,学生点击接受后调该接口传`ACCEPTED`,上课资源准备完成后再次调用该接口,传`READY`
接口地址:/teaching/callback/student_status
请求方式:POST
Request params:
|参数名 |是否必须 |说明 |参数类型 |
|--------------|----------|--------|----------|
|work_order_id |是 |工单id |Long |
|status_type |是 |状态类型 |"ACCEPTED" or "READY"|
Response:
成功:
```
{
"data"
:
{
},
"returnCode"
:
200
,
"returnMsg"
:
"success"
}
```
失败:
```
{
"data"
:
{
},
"returnCode"
:
106
,
"returnMsg"
:
"学生状态回调失败"
}
```
\ No newline at end of file
...
...
Please
register
or
login
to post a comment