Changes between Version 13 and Version 14 of baby3_developers/interface


Ignore:
Timestamp:
12/24/2014 03:29:02 PM (11 years ago)
Author:
lianchijin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • baby3_developers/interface

    v13 v14  
    315315{{{ 
    316316  备注:文章终端   
    317   接口说明:同二胎宝典接口--4.资讯文章终端接口 (mrobot) 
    318    [http://trac.pc.com.cn/iphone/wiki/2ndchild/interface#a4.资讯文章终端接口mrobot] 
    319 }}} 
     317  接口说明:同二胎宝典接口--4.资讯文章终端接口 (mrobot): 
     318     http://trac.pc.com.cn/iphone/wiki/2ndchild/interface#a4.资讯文章终端接口mrobot 
     319}}} 
     320 
     321=== 7.0 百科图集 === 
     322{{{ 
     323  备注:百科图集 
     324  接口开发:陈旭 
     325  原始URL:http://pp.pcbaby.com.cn/template/pcbaby/Content_Albums_List.jsp?REQUEST_CODE=303&albumsId=24068 
     326  请求URL: 
     327  HTTP请求方式:get 
     328  是否需要登录:否 
     329  返回格式:JSON 
     330  缓存方式:无 
     331  缓存时间:无 
     332  请求参数: 
     333  REQUEST_CODE=303 //请求代码 
     334  albumsId=24068  //图集id 
     335  返回参数: 
     336{ 
     337    status: 0, //状态码  0正常返回   非0请求错误 
     338    desc: "",  //提示信息    status=0提示信息为空;status非0,给出对应的出错提示信息 
     339   "total": 15,   
     340   "pageNo": 1,  
     341   "pageSize": 15,  
     342   "pageCount":1, 
     343   "ablumsList": //图集数据 
     344     [ 
     345        { 
     346          "imageContent":  //图片描述 
     347          "imageId":  //图片id 
     348          "imageTitle":  //图集标题 
     349          "thumb":  //小图url 
     350          "url":  //图片url 
     351        } 
     352       ... 
     353    ] 
     354} 
     355}}}