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 10:31:50 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3a047b44e93c28dde8c506e37410fd82d982fedc
3a047b44
1 parent
1f43b7d4
editTestSite
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
79 行增加
和
0 行删除
src/edit_test_site.js
src/edit_test_site.js
0 → 100644
查看文件 @
3a047b4
/**
* @api {post} /3m/meeting/edit_test_site.do 18.编辑试用站点
* @apiName edit_test_site
* @apiGroup site
* @apiVersion 1.6.0
* @apiDescription 编辑创建试用站点
*
* @apiParam {String} siteId 站点标识
* @apiParam {String} email 联系人邮箱
* @apiParam {String} siteName 站点名称
* @apiParam {String} siteDomain 站点域名
* @apiParam {String} endDate 站点失效时间
* @apiParam {int} autoRecording 是否自动录制:1 是,0 否
* @apiParam {int} maxCapacity 允许最大并发人数
* @apiParam {int} maxAudioChannels 最大音频路数
* @apiParam {int} maxVideoChannels 最大视频路数
* @apiParam {Boolean} customLogo 是否自定义站点logo
* @apiParam {String} webCopyright 站点Copyright
* @apiParam {int} supportMedia 是否支持媒体共享:1 是,0 否
* @apiParam {int} supportRecord 是否支持录制:1 是,0 否
* @apiParam {int} supportVideo 是否支持视频:1 是,0 否
* @apiParam {int} supportScreen 是否支持屏幕共享:1 是,0 否
* @apiParam {int} pptFlash 是否支持动态PPT:1 是,0 否
* @apiParam {int} allowSettingResolution 是否支持切换视频分辨率:1 是,0 否
* @apiParam {String} qqSupport 课堂里的QQ求助对象
* @apiParam {String} mobileSupport 课堂里的手机求助对象
* @apiParam {int} siteType=0 产品授权方式:1 正式用户,0 试用用户
* @apiParam {Long} timestamp 时间戳
* @apiParam {String} authId MD5(key+siteId+timestamp), 其中 key 为与系统约定的加密 key
*
* @apiSuccess {int} errorCode
* 0:正常 <br/>
* 1:站点不存在 <br/>
* 2:站点未到生效日期 <br/>
* 4:authId 错误 <br/>
* 5:authId 不能重复使用 <br/>
* 6:timestamp 超时 <br/>
* 7:maxAudioChannels不能小于0 <br/>
* 8:maxAudioChannels不能大于5 <br/>
* 9:maxVideoChannels不能小于0 <br/>
* 10:maxVideoChannels不能大于5 <br/>
* 11:endDate 格式不正确 <br/>
* @apiSuccess {String} msg 错误信息
*
* @apiParamExample {xml} 请求示例
<?xml version="1.0" encoding="UTF-8"?>
<param>
<siteId>shanghai</siteId>
<timestamp>{timestamp}</timestamp>
<authId>{authId}</authId>
<email>test@sample.cn</email>
<siteName>测试站点</siteName>
<siteDomain>www</siteDomain>
<endDate>2020-08-20</endDate>
<autoRecording>false</autoRecording>
<maxCapacity>1000</maxCapacity>
<maxAudioChannels>5</maxAudioChannels>
<maxVideoChannels>5</maxVideoChannels>
<customLogo>false</customLogo>
<webCopyright>copyright</webCopyright>
<supportMedia>1</supportMedia>
<supportRecord>1</supportRecord>
<supportVideo>1</supportVideo>
<supportScreen>1</supportScreen>
<pptFlash>1</pptFlash>
<allowSettingResolution>false</allowSettingResolution>
<qqSupport>12390324323</qqSupport>
<mobileSupport>18900000000</mobileSupport>
<siteType>1</siteType>
</param>
*
* @apiSuccessExample {xml} 返回示例
<?xml version="1.0" encoding="UTF-8"?>
<result>
<errcode>0</errcode>
<msg>操作成功</msg>
</result>
*
*/
...
...
请
注册
或
登录
后发表评论