lipengjava

license.js

  1 +/**
  2 + * @api {post} /3m/meeting/license.do 8.查询站点剩余点数
  3 + * @apiName license
  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 + * @apiParamExample {xml} 请求示例
  13 + <?xml version="1.0" encoding="UTF-8"?>
  14 + <param>
  15 + <siteId>shanghai</siteId>
  16 + <timestamp>1392032123210</timestamp>
  17 + <authId>4297f44b13955235245b2497399d7a93</authId>
  18 + </param>
  19 + *
  20 + * @apiSuccess {int} errorCode
  21 + * 0:正常 <br/>
  22 + * 1:siteId 错误,站点不存在或已删除 <br/>
  23 + * 2:站点未到生效日期 <br/>
  24 + * 3: 站点过期 <br/>
  25 + * 4:authId 错误 <br/>
  26 + * 6:timestamp 超时 <br/>
  27 + * 7:mtgKey 不存在 <br/>
  28 + * 10:报文格式错误 <br/>
  29 + * @apiSuccess {String} surplus 剩余的点数
  30 + *
  31 + * @apiSuccessExample {xml} 返回示例
  32 + &lt;?xml version=“1.0” encoding="UTF-8"?&gt;
  33 + &lt;result&gt;
  34 + &lt;errorCode&gt;0&lt;/errorCode&gt;
  35 + &lt;surplus&gt;20&lt;/surplus&gt;
  36 + &lt;/result&gt;
  37 + *
  38 + */