get_test_site.js
4.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**
* @api {post} /3m/meeting/get_test_site.do 19.查询试用站点信息
* @apiName get_test_site
* @apiGroup site
* @apiVersion 1.6.0
* @apiDescription 查询试用站点信息
*
* @apiParam {String} siteId 站点标识
* @apiParam {Long} timestamp 时间戳
* @apiParam {String} authId MD5(key+siteId+timestamp), 其中 key 为与系统约定的加密 key
*
* @apiSuccess {int} errorCode
* 0:正常 <br/>
* 1:站点不存在<br/>
* 4:authId 错误 <br/>
* 5:authId 不能重复使用 <br/>
* 6:timestamp 超时 <br/>
* 10:报文格式错误 <br/>
* @apiSuccess {String} msg 错误信息
* @apiSuccess {Object} data 详细信息
* @apiSuccess {String} data.siteId 站点标识
* @apiSuccess {String} data.key 站点 Key
* @apiSuccess {String} data.startdate 生效时间
* @apiSuccess {String} data.enddate 失效时间
* @apiSuccess {String} data.helpsite 帮助页面
* @apiSuccess {int} data.audioVideoInteractive 一般与会者是否参加音视频互动
* @apiSuccess {int} data.enableRecording 是否启用录制
* @apiSuccess {int} data.autoRecording 是否自动录制
* @apiSuccess {String} data.siteName 站点名称
* @apiSuccess {String} data.siteDomain 站点域名
* @apiSuccess {int} data.maxCapacity 最大并发人数
* @apiSuccess {Boolean} data.supportScreen 是否支持屏幕共享
* @apiSuccess {Boolean} data.supportMedia 是否支持媒体共享
* @apiSuccess {Boolean} data.supportRecord 是否支持录制
* @apiSuccess {Boolean} data.recordVisible 是否显示服务器录制
* @apiSuccess {Boolean} data.localRecordVisible 是否显示本地录制
* @apiSuccess {Boolean} data.supportVideo 是否支持视频
* @apiSuccess {int} data.maxAudioChannels 最大音频路数
* @apiSuccess {int} data.maxVideoChannels 最大视频路数
* @apiSuccess {Boolean} data.siteType 是否正式用户
* @apiSuccess {Boolean} data.customLogo 是否自定义logo
* @apiSuccess {Boolean} data.pptflash 是否支持动态PPT
* @apiSuccess {Boolean} data.allowSettingResolution 是否支持切换视频分辨率
* @apiSuccess {String} data.website 官网
* @apiSuccess {String} data.webCopyright 站点网站的Copyright
* @apiSuccess {String} data.flashCopyright flash课堂的Copyright
* @apiSuccess {String} data.mobileSupport 课堂里的手机求助对象
* @apiSuccess {String} data.creater 课堂的父站点标识
* @apiSuccess {int} data.extendTimes 延长次数
* @apiSuccess {int} data.siteStatus 站点状态:1 待审核,2 审核未通过,3 启用,4 信用
*
* @apiParamExample {xml} 请求示例
<?xml version="1.0" encoding="UTF-8"?>
<param>
<siteId>childSite</siteId>
<timestamp>111</timestamp>
<authId>111</authId>
</param>
*
* @apiSuccessExample {xml} 返回示例
<?xml version="1.0" encoding="UTF-8"?>
<result>
<errcode>0</errcode>
<msg>操作成功</msg>
<data>
<siteid>{siteId}</siteid>
<key>{siteKey}</key>
<startdate>2014-10-10</startdate>
<enddate>2025-08-20</enddate>
<helpsite></helpsite>
<audioVideoInteractive>1</audioVideoInteractive>
<enableRecording>true</enableRecording>
<autoRecording>false</autoRecording>
<siteName>站点</siteName>
<siteDomain>www</siteDomain>
<maxCapacity>1000</maxCapacity>
<supportScreen>false</supportScreen>
<supportMedia>false</supportMedia>
<supportRecord>false</supportRecord>
<recordVisible>false</recordVisible>
<localRecordVisible>false</localRecordVisible>
<supportVideo>false</supportVideo>
<maxAudioChannels>5</maxAudioChannels>
<maxVideoChannels>5</maxVideoChannels>
<siteType>true</siteType>
<customLogo>false</customLogo>
<pptflash>false</pptflash>
<allowSettingResolution>false</allowSettingResolution>
<website>https://www.baidu.com</website>
<webCopyright>三芒世纪(北京)科技有限公司</webCopyright>
<flashCopyright>三芒世纪(北京)科技有限公司</flashCopyright>
<mobileSupport>18900000000</mobileSupport>
<creater>1</creater>
<extendTimes>0</extendTimes>
<siteStatus>1</siteStatus>
</data>
</result>
*
*/