Changes between Version 6 and Version 7 of Ticket #149


Ignore:
Timestamp:
07/26/2016 11:56:29 AM (10 years ago)
Author:
huangshaobiao
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #149 – Description

    v6 v7  
    55'''是否需要登录:'''否 
    66'''返回格式:'''JSON 
    7 '''缓存时间:'''30分钟 
     7'''缓存时间:'''5分钟 
    88'''请求参数:''' 
    99 max: 最大记录数, int, 非必传, 默认值4 
     
    7474}}} 
    7575 
    76 '''2、热门主播列表接口''' 
     76'''3、热门主播分页接口''' 
    7777'''请求URL:''' 
    78 http://pplive.pconline.com.cn/intf/anchor_list.jsp 
     78http://live.pcvideo.com.cn/intf/anchor_list.jsp 
    7979'''HTTP请求方式:'''get 
    80 '''是否需要登录:''' 
     80'''是否需要登录:''' 
    8181'''返回格式:'''JSON 
    82 '''缓存时间:'''分钟 
     82'''缓存时间:'''30分钟 
    8383'''请求参数:''' 
    8484 pageNo: 页码, int, 非必传,默认1; 
     
    9292            "nickname": "王思聪",  //主播昵称 
    9393            "photoUrl": "xxxxx",//头像地址 
    94             "popularity": 0  //热门度 
    95         } 
     94            "anchorUrl": "http..."  //主播地址 
     95        }, 
     96        ... 
    9697    ], 
    9798    "msg": "查询列表成功",  //接口描述 
    9899    "status": 1,        //接口状态  1成功 0失败 
    99     "tatolCount": 3     //总记录数 
     100    "total": 30,        //总记录数 
     101    "pageNo": 1 
    100102} 
    101103}}} 
    102104 
    103 '''3、直播类别接口''' 
     105'''4、直播类别接口''' 
    104106'''请求URL:''' 
    105 http://pplive.pconline.com.cn/intf/category_list.jsp 
     107http://live.pcvideo.com.cn/intf/category_list.jsp 
    106108'''HTTP请求方式:'''get 
    107 '''是否需要登录:''' 
     109'''是否需要登录:''' 
    108110'''返回格式:'''JSON 
    109 '''缓存时间:'''分钟 
     111'''缓存时间:'''30分钟 
    110112'''请求参数:''' 
    111  pageNo: 页码, int, 非必传,默认1; 
    112  pageSize: 当页记录数, int, 非必传, 默认值5 
     113 
    113114'''返回参数:''' 
    114115{{{ 
     
    118119            "categoryId": 234, //类别ID 
    119120            "categoryName": "大陆记实2",    //类别名字 
     121            "url": "http...", //链接地址 
    120122            "sort": 3   //类别顺序 
    121         } 
     123        }, 
     124        ... 
    122125    ], 
    123126    "msg": "查询列表成功",    //接口状态描述 
    124127    "status": 1,        //接口状态码 1成功 0失败 
    125     "tatolCount": 5     //总记录数 
     128    "total": 5  //总记录数 
    126129} 
    127130}}}