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 16:25:59 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ac7d5aeadda0ee068d02ec9d60f9760edc2fa0ec
ac7d5aea
1 parent
6a899654
get doc server url
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
46 行增加
和
0 行删除
src/get_document_url.js
src/get_document_url.js
0 → 100644
查看文件 @
ac7d5ae
/**
* @api {post} /3m/meeting/get_document_url.do 21.获取文档服务器地址
* @apiName get_document_url
* @apiGroup doc
* @apiVersion 1.6.0
* @apiDescription 获取文档服务器地址,用于后续的上传操作
*
* @apiParam {String} siteId 站点标识
* @apiParam {Long} timestamp 时间戳
* @apiParam {String} authId MD5(key+siteId+timestamp), 其中 key 为与系统约定的加密 key
*
* @apiParamExample {xml} 请求示例
<?xml version="1.0" encoding="UTF-8"?>
<param>
<siteId>shanghai</siteId>
<timestamp>1392032123210</timestamp>
<authId>4297f44b13955235245b2497399d7a93</authId>
</param>
*
* @apiSuccess {int} errorCode
* 0:正常 <br/>
* 1:siteId 错误 <br/>
* 2:站点未到生效日期 <br/>
* 3:站点过期 <br/>
* 4:authId 错误 <br/>
* 5:authId 不能重复使用 <br/>
* 6:timestamp 超时 <br/>
* 10:报文格式错误 <br/>
* @apiSuccess {Array} docList
* @apiSuccess {Object} docList.docServer
* @apiSuccess {String} docList.docServer.serverAddress 地址:端口
* @apiSuccess {int} docList.docServer.count 当前等待人数
*
* @apiSuccessExample {xml} 返回示例
<?xml version=“1.0” encoding="UTF-8"?>
<result>
<errorCode>0</errorCode>
<doclist>
<docServer>
<serverAddress>127.0.0.1:8080</serverAddress>
<count>0</count>
</docServer>
</doclist>
</result>
*
*/
...
...
请
注册
或
登录
后发表评论