Changes between Version 1 and Version 2 of Ticket #149


Ignore:
Timestamp:
07/20/2016 06:27:34 PM (10 years ago)
Author:
zhouqizhou
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #149 – Description

    v1 v2  
    3434   ] 
    3535} 
    36 }}} 
     36}}}[[BR]] 
     37[[BR]] 
     38'''2、热门主播列表接口''' 
     39'''请求URL:''' 
     40http://zqz.pconline.com.cn:8080/intf/anchor_list.jsp 
     41'''HTTP请求方式:'''get 
     42'''是否需要登录:'''是 
     43'''返回格式:'''JSON 
     44'''缓存时间:'''十分钟 
     45'''请求参数:''' 
     46 pageNo: 页码, int, 非必传,默认1; 
     47 pageSize: 当页记录数, int, 非必传, 默认值5 
     48'''返回参数:''' 
     49{ 
     50    "data": [ 
     51        { 
     52            "authorId": 94, //主播ID 
     53            "nickname": "王思聪",  //主播昵称 
     54            "photoUrl": "http://dev2.pconline.com.cn:9191/upcfiles/live_video/1607/19/c0/160783_1468920151680_150x150.jpg",//头像地址 
     55            "popularity": 0  //热门度 
     56        } 
     57    ], 
     58    "msg": "查询列表成功",  //接口描述 
     59    "status": 1,        //接口状态  1成功 0失败 
     60    "tatolCount": 3     //总记录数 
     61}[[BR]] 
     62[[BR]]