Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
李鹏
/
api-doc
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
lipengjava
2017-02-27 17:18:18 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
57d3237446e3a99f1131067fa7fce7b73aa48d6f
57d32374
1 parent
d03dc168
count_online
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
42 行增加
和
0 行删除
src/count_online.js
src/count_online.js
0 → 100644
查看文件 @
57d3237
/**
* @api {post} /3m/meeting/count_online.do 10.查询课堂在线人数
* @apiName count_online
* @apiGroup meeting
* @apiVersion 1.6.0
* @apiDescription 查询课堂在线人数(正在上课的人数)
*
* @apiParam {String} siteId 站点标识
* @apiParam {String} mtgKey 课堂标识
* @apiParam {Long} timestamp 时间戳
* @apiParam {String} authId MD5(key+siteId+mtgKey+timestamp)
*
* @apiParamExample {xml} 请求示例
<?xml version="1.0" encoding="UTF-8"?>
<param>
<siteId>shanghai</siteId>
<mtgKey>10002321</mtgKey>
<timestamp>1392032123210</timestamp>
<authId>4297f44b13955235245b2497399d7a93</authId>
</param>
*
* @apiSuccess {int} errorCode
* 0:正常 <br/>
* 1:siteId 错误,站点不存在或已删除 <br/>
* 2:站点未到生效日期 <br/>
* 3: 站点过期 <br/>
* 4:authId 错误 <br/>
* 6:timestamp 超时 <br/>
* 7:mtgKey 不存在 <br/>
* 10:报文格式错误 <br/>
* @apiSuccess {String} mtgKey 传入的值
* @apiSuccess {int} online 当前在线人数
*
* @apiSuccessExample {xml} 返回示例
<?xml version=“1.0” encoding="UTF-8"?>
<result>
<errorCode>0</errorCode>
<mtgKey>10002321</mtgKey>
<online>18</online>
</result>
*
*/
...
...
请
注册
或
登录
后发表评论