正在显示
1 个修改的文件
包含
99 行增加
和
0 行删除
src/get_test_site.js
0 → 100644
| 1 | +/** | ||
| 2 | + * @api {post} /3m/meeting/get_test_site.do 19.查询试用站点信息 | ||
| 3 | + * @apiName get_test_site | ||
| 4 | + * @apiGroup site | ||
| 5 | + * @apiVersion 1.6.0 | ||
| 6 | + * @apiDescription 查询试用站点信息 | ||
| 7 | + * | ||
| 8 | + * @apiParam {String} siteId 站点标识 | ||
| 9 | + * @apiParam {Long} timestamp 时间戳 | ||
| 10 | + * @apiParam {String} authId MD5(key+siteId+timestamp), 其中 key 为与系统约定的加密 key | ||
| 11 | + * | ||
| 12 | + * @apiSuccess {int} errorCode | ||
| 13 | + * 0:正常 <br/> | ||
| 14 | + * 1:站点不存在<br/> | ||
| 15 | + * 4:authId 错误 <br/> | ||
| 16 | + * 5:authId 不能重复使用 <br/> | ||
| 17 | + * 6:timestamp 超时 <br/> | ||
| 18 | + * 10:报文格式错误 <br/> | ||
| 19 | + * @apiSuccess {String} msg 错误信息 | ||
| 20 | + * @apiSuccess {Object} data 详细信息 | ||
| 21 | + * @apiSuccess {String} data.siteId 站点标识 | ||
| 22 | + * @apiSuccess {String} data.key 站点 Key | ||
| 23 | + * @apiSuccess {String} data.startdate 生效时间 | ||
| 24 | + * @apiSuccess {String} data.enddate 失效时间 | ||
| 25 | + * @apiSuccess {String} data.helpsite 帮助页面 | ||
| 26 | + * @apiSuccess {int} data.audioVideoInteractive 一般与会者是否参加音视频互动 | ||
| 27 | + * @apiSuccess {int} data.enableRecording 是否启用录制 | ||
| 28 | + * @apiSuccess {int} data.autoRecording 是否自动录制 | ||
| 29 | + * @apiSuccess {String} data.siteName 站点名称 | ||
| 30 | + * @apiSuccess {String} data.siteDomain 站点域名 | ||
| 31 | + * @apiSuccess {int} data.maxCapacity 最大并发人数 | ||
| 32 | + * @apiSuccess {Boolean} data.supportScreen 是否支持屏幕共享 | ||
| 33 | + * @apiSuccess {Boolean} data.supportMedia 是否支持媒体共享 | ||
| 34 | + * @apiSuccess {Boolean} data.supportRecord 是否支持录制 | ||
| 35 | + * @apiSuccess {Boolean} data.recordVisible 是否显示服务器录制 | ||
| 36 | + * @apiSuccess {Boolean} data.localRecordVisible 是否显示本地录制 | ||
| 37 | + * @apiSuccess {Boolean} data.supportVideo 是否支持视频 | ||
| 38 | + * @apiSuccess {int} data.maxAudioChannels 最大音频路数 | ||
| 39 | + * @apiSuccess {int} data.maxVideoChannels 最大视频路数 | ||
| 40 | + * @apiSuccess {Boolean} data.siteType 是否正式用户 | ||
| 41 | + * @apiSuccess {Boolean} data.customLogo 是否自定义logo | ||
| 42 | + * @apiSuccess {Boolean} data.pptflash 是否支持动态PPT | ||
| 43 | + * @apiSuccess {Boolean} data.allowSettingResolution 是否支持切换视频分辨率 | ||
| 44 | + * @apiSuccess {String} data.website 官网 | ||
| 45 | + * @apiSuccess {String} data.webCopyright 站点网站的Copyright | ||
| 46 | + * @apiSuccess {String} data.flashCopyright flash课堂的Copyright | ||
| 47 | + * @apiSuccess {String} data.mobileSupport 课堂里的手机求助对象 | ||
| 48 | + * @apiSuccess {String} data.creater 课堂的父站点标识 | ||
| 49 | + * @apiSuccess {int} data.extendTimes 延长次数 | ||
| 50 | + * @apiSuccess {int} data.siteStatus 站点状态:1 待审核,2 审核未通过,3 启用,4 信用 | ||
| 51 | + * | ||
| 52 | + * @apiParamExample {xml} 请求示例 | ||
| 53 | + <?xml version="1.0" encoding="UTF-8"?> | ||
| 54 | + <param> | ||
| 55 | + <siteId>childSite</siteId> | ||
| 56 | + <timestamp>111</timestamp> | ||
| 57 | + <authId>111</authId> | ||
| 58 | + </param> | ||
| 59 | + * | ||
| 60 | + * @apiSuccessExample {xml} 返回示例 | ||
| 61 | + <?xml version="1.0" encoding="UTF-8"?> | ||
| 62 | + <result> | ||
| 63 | + <errcode>0</errcode> | ||
| 64 | + <msg>操作成功</msg> | ||
| 65 | + <data> | ||
| 66 | + <siteid>{siteId}</siteid> | ||
| 67 | + <key>{siteKey}</key> | ||
| 68 | + <startdate>2014-10-10</startdate> | ||
| 69 | + <enddate>2025-08-20</enddate> | ||
| 70 | + <helpsite></helpsite> | ||
| 71 | + <audioVideoInteractive>1</audioVideoInteractive> | ||
| 72 | + <enableRecording>true</enableRecording> | ||
| 73 | + <autoRecording>false</autoRecording> | ||
| 74 | + <siteName>站点</siteName> | ||
| 75 | + <siteDomain>www</siteDomain> | ||
| 76 | + <maxCapacity>1000</maxCapacity> | ||
| 77 | + <supportScreen>false</supportScreen> | ||
| 78 | + <supportMedia>false</supportMedia> | ||
| 79 | + <supportRecord>false</supportRecord> | ||
| 80 | + <recordVisible>false</recordVisible> | ||
| 81 | + <localRecordVisible>false</localRecordVisible> | ||
| 82 | + <supportVideo>false</supportVideo> | ||
| 83 | + <maxAudioChannels>5</maxAudioChannels> | ||
| 84 | + <maxVideoChannels>5</maxVideoChannels> | ||
| 85 | + <siteType>true</siteType> | ||
| 86 | + <customLogo>false</customLogo> | ||
| 87 | + <pptflash>false</pptflash> | ||
| 88 | + <allowSettingResolution>false</allowSettingResolution> | ||
| 89 | + <website>https://www.baidu.com</website> | ||
| 90 | + <webCopyright>三芒世纪(北京)科技有限公司</webCopyright> | ||
| 91 | + <flashCopyright>三芒世纪(北京)科技有限公司</flashCopyright> | ||
| 92 | + <mobileSupport>18900000000</mobileSupport> | ||
| 93 | + <creater>1</creater> | ||
| 94 | + <extendTimes>0</extendTimes> | ||
| 95 | + <siteStatus>1</siteStatus> | ||
| 96 | + </data> | ||
| 97 | + </result> | ||
| 98 | + * | ||
| 99 | + */ |
-
请 注册 或 登录 后发表评论