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-05-19 11:51:03 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
91a4545fc7f69c37ea096538b8fa39d868a7686d
91a4545f
1 parent
3a047b44
get test site
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
99 行增加
和
0 行删除
src/get_test_site.js
src/get_test_site.js
0 → 100644
查看文件 @
91a4545
/**
* @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>
*
*/
...
...
请
注册
或
登录
后发表评论