lipengjava

play_record

  1 +/**
  2 + * @api {post} /3m/meeting/play_record.do 13.查询课堂录制播放地址
  3 + * @apiName play_record
  4 + * @apiGroup meeting
  5 + * @apiVersion 1.6.0
  6 + * @apiDescription 查询课堂录制播放地址。将param和configFile参数通过POST方式传递给url页面,即可直接播放录制
  7 + *
  8 + * @apiParam {String} siteId 站点标识
  9 + * @apiParam {String} mtgKey 课堂的唯一标识
  10 + * @apiParam {String} configFile 录制的唯一标识,最大长度64
  11 + * @apiParam {int} language=2 客户端语言:1 英文 2 中文
  12 + * @apiParam {int} userId 英文、数字组成的字符串,最大长度50
  13 + * @apiParam {int} userName 客户端显示的姓名,最大长度32
  14 + * @apiParam {Long} timestamp 时间戳
  15 + * @apiParam {String} authId MD5(key+siteId+mtgKey+userId+timestamp)
  16 + *
  17 + * @apiParamExample {xml} 请求示例
  18 + <?xml version="1.0" encoding="UTF-8"?>
  19 + <param>
  20 + <siteId>shanghai</siteId>
  21 + <mtgKey>100012</mtgKey> <configFile>67303217_983041_2014-11-3-9-42-44.xml</configFile>
  22 + <language>1</language>
  23 + <userName>shanghai</userName>
  24 + <userId>2000012</userId> //用户ID
  25 + <timestamp>1392032123210</timestamp>
  26 + <authId>4297f44b13955235245b2497399d7a93</authId>
  27 + </param>
  28 + *
  29 + * @apiSuccess {int} errorCode
  30 + * 0:正常 <br/>
  31 + * 1:siteId 错误,站点不存在或已删除 <br/>
  32 + * 2:站点未到生效日期 <br/>
  33 + * 3: 站点过期 <br/>
  34 + * 4:authId 错误 <br/>
  35 + * 6:timestamp 超时 <br/>
  36 + * 7:mtgKey 不存在 <br/>
  37 + * 10:报文格式错误 <br/>
  38 + * @apiSuccess {String} url 播放地址
  39 + * @apiSuccess {String} param 播放地址请求参数
  40 + * @apiSuccess {String} configFile 播放地址请求参数
  41 + * @apiSuccess {Long} timestamp 时间戳
  42 + *
  43 + * @apiSuccessExample {xml} 返回示例
  44 + &lt;?xml version=“1.0” encoding="UTF-8"?&gt;
  45 + &lt;result&gt;
  46 + &lt;errorCode&gt;0&lt;/errorCode&gt;
  47 + &lt;url&gt;http://127.0.0.1:8080/3m/record/index.jsp&lt;/url&gt;
  48 + &lt;param&gt;字符串&lt;/param&gt;
  49 + &lt;configFile&gt;字符串&lt;/configFile&gt;
  50 + &lt;timestamp&gt;1392032123210&lt;/timestamp&gt;
  51 + &lt;/result&gt;
  52 + *
  53 + */