Commit 3ef59ed9e7ea553b2c52a04df3d376bb5e0f1049

Authored by 范晓春
1 parent 4171b3f5

提交

03.发布云/5.2 sp内容同步推荐接口.md 0 → 100644
  1 +/* Title: 5.1 全文检索增量检索接口 */
  2 +### 全文检索增量检索接口
  3 +-----
  4 +#### URL:http://so.cnlive.com/zgw/so/incsearch
  5 +-----
  6 +#### 请求方式: GET/POST
  7 +-----
  8 +#### 参数说明:
  9 +<table class="table table-bordered table-striped table-condensed">
  10 + <tr>
  11 + <th>参数</th>
  12 + <th>必选</th>
  13 + <th>类型</th>
  14 + <th>说明</th>
  15 + </tr>
  16 + <tr>
  17 + <td>appid</td>
  18 + <td>true</td>
  19 + <td>string</td>
  20 + <td>sp应用id</td>
  21 + </tr>
  22 + <tr>
  23 + <td>content</td>
  24 + <td>true</td>
  25 + <td>string</td>
  26 + <td>内容json字符串</td>
  27 + </tr>
  28 +
  29 +</table>
  30 +
  31 +-----
  32 +#### 单条内容 content JSON说明:
  33 +```
  34 +content:{
  35 + contentId:"121", //内容id 必填
  36 + titile:"我们都是好青年",//标题 必填
  37 + subTitle:"好青年",//副标题 非必填
  38 + contentType:"AL", //内容类型 必填 活动:AL;点播视频:VI;文章:AR;专题:SP
  39 + author:"某某",//作者 非必填
  40 + status:1, //内容状态 非必填 上线:1 下线:2
  41 + area:"美国" //地区 非必填 多个地区以顿号分割 非必填
  42 + description:"哈哈哈。。。。",//描述 非必填
  43 + duration:0,播放时长 非必填
  44 + mapperColumn:"ent/", //中国网+栏目id 必填
  45 + pageUrl:"http://www.cnlive.com", //web内容页面链接地址 必填
  46 + tags:"娱乐、前沿",//标签,多个标签以顿号分割 非必填
  47 + posterImg:"http://y2.cnliveimg.com:8080/image/itv/2016/1031/227de2faddc74f5cbb4a775c404e2ce7_158168_100.jpg",//内容封面 必填
  48 + vipFlag:0,//收费表示 非必填 默认免费 免费:0 收费:1
  49 + albumStatus:0,//活动状态 (类型为AL 时 必填) 预告海报:0 预告视频:1 直播:2 回放视频:3
  50 + coordinate:"30.6508298703,104.0757373249", //内容发生地经纬度 非必填 默认sp的办公地点经纬度
  51 + address:"上海",//发生地详细地址 非必填 默认sp公司地址
  52 +}
  53 +```
  54 +-----
  55 +#### 批量多条内容 content JSON说明:
  56 +```
  57 +content:[{
  58 + contentId:"121", //内容id 必填
  59 + titile:"我们都是好青年",//标题 必填
  60 + subTitle:"好青年",//副标题 非必填
  61 + contentType:"AL", //内容类型 必填 活动:AL;点播视频:VI;文章:AR;专题:SP
  62 + author:"某某",//作者 非必填
  63 + status:1, //内容状态 非必填 上线:1 下线:2
  64 + area:"美国", //地区 非必填
  65 + description:"哈哈哈。。。。",//描述 非必填
  66 + duration:0,播放时长 非必填
  67 + mapperColumn:"ent/", //中国网+栏目id 必填
  68 + pageUrl:"http://www.cnlive.com", //web内容页面链接地址 必填
  69 + tags:"娱乐、前沿",//标签,多个标签以顿号分割 非必填
  70 + posterImg:"http://y2.cnliveimg.com:8080/image/itv/2016/1031/227de2faddc74f5cbb4a775c404e2ce7_158168_100.jpg",//内容封面 必填
  71 + vipFlag:0,//收费表示 非必填 默认免费 免费:0 收费:1
  72 + albumStatus:0,//活动状态 (类型为AL 时 必填) 预告海报:0 预告视频:1 直播:2 回放视频:3
  73 + coordinate:"30.6508298703,104.0757373249", //内容发生地经纬度 非必填 默认sp的办公地点经纬度
  74 + address:"上海",//发生地详细地址 非必填 默认sp公司地址
  75 +}。。。]
  76 +```
... ...