lipengjava

editTestSite

  1 +/**
  2 + * @api {post} /3m/meeting/edit_test_site.do 18.编辑试用站点
  3 + * @apiName edit_test_site
  4 + * @apiGroup site
  5 + * @apiVersion 1.6.0
  6 + * @apiDescription 编辑创建试用站点
  7 + *
  8 + * @apiParam {String} siteId 站点标识
  9 + * @apiParam {String} email 联系人邮箱
  10 + * @apiParam {String} siteName 站点名称
  11 + * @apiParam {String} siteDomain 站点域名
  12 + * @apiParam {String} endDate 站点失效时间
  13 + * @apiParam {int} autoRecording 是否自动录制:1 是,0 否
  14 + * @apiParam {int} maxCapacity 允许最大并发人数
  15 + * @apiParam {int} maxAudioChannels 最大音频路数
  16 + * @apiParam {int} maxVideoChannels 最大视频路数
  17 + * @apiParam {Boolean} customLogo 是否自定义站点logo
  18 + * @apiParam {String} webCopyright 站点Copyright
  19 + * @apiParam {int} supportMedia 是否支持媒体共享:1 是,0 否
  20 + * @apiParam {int} supportRecord 是否支持录制:1 是,0 否
  21 + * @apiParam {int} supportVideo 是否支持视频:1 是,0 否
  22 + * @apiParam {int} supportScreen 是否支持屏幕共享:1 是,0 否
  23 + * @apiParam {int} pptFlash 是否支持动态PPT:1 是,0 否
  24 + * @apiParam {int} allowSettingResolution 是否支持切换视频分辨率:1 是,0 否
  25 + * @apiParam {String} qqSupport 课堂里的QQ求助对象
  26 + * @apiParam {String} mobileSupport 课堂里的手机求助对象
  27 + * @apiParam {int} siteType=0 产品授权方式:1 正式用户,0 试用用户
  28 + * @apiParam {Long} timestamp 时间戳
  29 + * @apiParam {String} authId MD5(key+siteId+timestamp), 其中 key 为与系统约定的加密 key
  30 + *
  31 + * @apiSuccess {int} errorCode
  32 + * 0:正常 <br/>
  33 + * 1:站点不存在 <br/>
  34 + * 2:站点未到生效日期 <br/>
  35 + * 4:authId 错误 <br/>
  36 + * 5:authId 不能重复使用 <br/>
  37 + * 6:timestamp 超时 <br/>
  38 + * 7:maxAudioChannels不能小于0 <br/>
  39 + * 8:maxAudioChannels不能大于5 <br/>
  40 + * 9:maxVideoChannels不能小于0 <br/>
  41 + * 10:maxVideoChannels不能大于5 <br/>
  42 + * 11:endDate 格式不正确 <br/>
  43 + * @apiSuccess {String} msg 错误信息
  44 + *
  45 + * @apiParamExample {xml} 请求示例
  46 + &lt;?xml version="1.0" encoding="UTF-8"?&gt;
  47 + &lt;param&gt;
  48 + &lt;siteId&gt;shanghai&lt;/siteId&gt;
  49 + &lt;timestamp&gt;{timestamp}&lt;/timestamp&gt;
  50 + &lt;authId&gt;{authId}&lt;/authId&gt;
  51 + &lt;email&gt;test@sample.cn&lt;/email&gt;
  52 + &lt;siteName&gt;测试站点&lt;/siteName&gt;
  53 + &lt;siteDomain&gt;www&lt;/siteDomain&gt;
  54 + &lt;endDate&gt;2020-08-20&lt;/endDate&gt;
  55 + &lt;autoRecording&gt;false&lt;/autoRecording&gt;
  56 + &lt;maxCapacity&gt;1000&lt;/maxCapacity&gt;
  57 + &lt;maxAudioChannels&gt;5&lt;/maxAudioChannels&gt;
  58 + &lt;maxVideoChannels&gt;5&lt;/maxVideoChannels&gt;
  59 + &lt;customLogo&gt;false&lt;/customLogo&gt;
  60 + &lt;webCopyright&gt;copyright&lt;/webCopyright&gt;
  61 + &lt;supportMedia&gt;1&lt;/supportMedia&gt;
  62 + &lt;supportRecord&gt;1&lt;/supportRecord&gt;
  63 + &lt;supportVideo&gt;1&lt;/supportVideo&gt;
  64 + &lt;supportScreen&gt;1&lt;/supportScreen&gt;
  65 + &lt;pptFlash&gt;1&lt;/pptFlash&gt;
  66 + &lt;allowSettingResolution&gt;false&lt;/allowSettingResolution&gt;
  67 + &lt;qqSupport&gt;12390324323&lt;/qqSupport&gt;
  68 + &lt;mobileSupport&gt;18900000000&lt;/mobileSupport&gt;
  69 + &lt;siteType&gt;1&lt;/siteType&gt;
  70 + &lt;/param&gt;
  71 + *
  72 + * @apiSuccessExample {xml} 返回示例
  73 + &lt;?xml version="1.0" encoding="UTF-8"?&gt;
  74 + &lt;result&gt;
  75 + &lt;errcode&gt;0&lt;/errcode&gt;
  76 + &lt;msg&gt;操作成功&lt;/msg&gt;
  77 + &lt;/result&gt;
  78 + *
  79 + */