Commit e7738732df50f307e7f40abb6e943118801bdff5

Authored by 翁力
1 parent db2552fe

add title

Showing 1 changed file with 48 additions and 48 deletions
icms/全文检索接口.md
1   -## 全文检索接口 ##
2   -
3   -### 接口描述 ###
4   -
5   -
6   -### 接口地址 ###
7   -http://so.cnlive.com/so/search?functionId=programlist&params={%22appid%22:%22movie%22,%22plat%22:%22a%22,%22version%22:%225.0%22,%22keyword%22:%22%E4%B8%AD%22,%22page%22:%221%22,%22pageSize%22:%2215%22}
8   -
9   -### 接口协议 ###
10   -HTTP GET
11   -
12   -### 接口请求参数 ###
13   -<pre><code>functionId=programlist
14   -params:json参数体,格式如下:
15   -{
16   - "appid": "movie",
17   - "version": "5.3",
18   - "plat": "a",
19   - " keyword": "夏洛",
20   - " categoryId": "liveshow/",
21   - " Area": "大陆",
22   - " year": "2015",
23   - "isCharges": "0",
24   - "page": "1",
25   - "pageSize": "15",
26   - "order": " weight,publishTime"
27   -}
28   -1、appid:手机电影默认为movie
29   -2、version:APP的版本号,默认为5.0
30   -3、plat:a代表android;i代表ios
31   -4、keyword:查询关键字
32   -5、categoryId:栏目ID
33   -6、Area:地区
34   -7、Year:年代
35   -8、isCharges:是否付费,0免费,1不免费
36   -9、page:分页页码
37   -10、pageSize:每次请求返回最大记录数
38   -<code></pre>
39   -
40   -### 返回值 ###
41   -<pre><code>为空则返回:
42   -{
43   - programs: [ ]
44   -}
45   -<code></pre>
46   -
47   -
48   -
  1 +/*
  2 +Title: 全文检索接口
  3 +Sort: 1
  4 +*/
  5 +
  6 +### 接口描述 ###
  7 +
  8 +
  9 +### 接口地址 ###
  10 +http://so.cnlive.com/so/search?functionId=programlist&params={%22appid%22:%22movie%22,%22plat%22:%22a%22,%22version%22:%225.0%22,%22keyword%22:%22%E4%B8%AD%22,%22page%22:%221%22,%22pageSize%22:%2215%22}
  11 +
  12 +### 接口协议 ###
  13 +HTTP GET
  14 +
  15 +### 接口请求参数 ###
  16 +<pre><code>functionId=programlist
  17 +params:json参数体,格式如下:
  18 +{
  19 + "appid": "movie",
  20 + "version": "5.3",
  21 + "plat": "a",
  22 + " keyword": "夏洛",
  23 + " categoryId": "liveshow/",
  24 + " Area": "大陆",
  25 + " year": "2015",
  26 + "isCharges": "0",
  27 + "page": "1",
  28 + "pageSize": "15",
  29 + "order": " weight,publishTime"
  30 +}
  31 +1、appid:手机电影默认为movie
  32 +2、version:APP的版本号,默认为5.0
  33 +3、plat:a代表android;i代表ios
  34 +4、keyword:查询关键字
  35 +5、categoryId:栏目ID
  36 +6、Area:地区
  37 +7、Year:年代
  38 +8、isCharges:是否付费,0免费,1不免费
  39 +9、page:分页页码
  40 +10、pageSize:每次请求返回最大记录数
  41 +<code></pre>
  42 +
  43 +### 返回值 ###
  44 +<pre><code>为空则返回:
  45 +{
  46 + programs: [ ]
  47 +}
  48 +<code></pre>
49 49 \ No newline at end of file
... ...