get_record_list.js
2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @api {post} /3m/meeting/get_record_list.do 12.查询课堂的录制列表
* @apiName export_joinlog
* @apiGroup meeting
* @apiVersion 1.6.0
* @apiDescription 查询某个课堂的录制列表
*
* @apiParam {String} siteId 站点标识
* @apiParam {String} mtgKey 课堂的唯一标识
* @apiParam {int} pageNo 第几页,大于总页数时,自动设置为1
* @apiParam {int} pgeSize=20 每页显示多少条
* @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>
<pageNo>1</pageNo>
<pageSize>20</pageSize>
<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} pageNo 传入的值
* @apiSuccess {int} pageSize 传入的值
* @apiSuccess {int} recordCount 总记录数
* @apiSuccess {List} recordList 录制列表
* @apiSuccess {Object} recordList.recordInfo 录制对象
* @apiSuccess {String} recordList.recordInfo.userId 录制人的ID
* @apiSuccess {String} recordList.recordInfo.userName 录制人的姓名
* @apiSuccess {String} recordList.recordInfo.mtgTitle 课堂主题
* @apiSuccess {String} recordList.recordInfo.startTime 录制开始时间
* @apiSuccess {String} recordList.recordInfo.endTime 录制结束时间
* @apiSuccess {String} recordList.recordInfo.configFile 录制文件名
*
* @apiSuccessExample {xml} 返回示例
<?xml version=“1.0” encoding="UTF-8"?>
<result>
<errorCode>0</errorCode>
<mtgKey>10002321</mtgKey>
<pageNo>6</pageNo>
<pageSize>30</pageSize>
<recordCount>3<recordCount >
<recordList>
<recordInfo>
<userId>12000232</userId>
<userName>ChinaBj001</userName>
<mtgTitle>shanghai</mtgTitle>
<startTime>2013-09-11 14:02:05</startTime
<endTime>2013-09-11 14:15:47</endTime>
<configFile>67303217_983041_2014-11-3-9-42-44.xml</configFile>
</recordInfo>
</recordList >
</result>
*
*/