Changes between Version 12 and Version 13 of baby3_developers/interface


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

--

Legend:

Unmodified
Added
Removed
Modified
  • baby3_developers/interface

    v12 v13  
    278278  广告跳转:pcbabybrowser://PCBabyFullWebView/?url=http://xxxx(广告url) 
    279279}}} 
     280 
     281=== 6.0 文章列表 === 
     282{{{ 
     283  备注:文章列表 
     284  接口开发: 
     285  原始URL: 
     286  请求URL: 
     287  HTTP请求方式:get 
     288  是否需要登录:否 
     289  返回格式:JSON 
     290  缓存方式:无 
     291  缓存时间:无 
     292  请求参数: 
     293  无 
     294  返回参数: 
     295{ 
     296    status: 0, //状态码  0正常返回   非0请求错误 
     297    desc: "",  //提示信息    status=0提示信息为空;status非0,给出对应的出错提示信息 
     298   "total": 20,  //列表总数 
     299   "pageNo": 1, //当前页码 
     300   "pageSize": 20, //每页条数 
     301   "datas": //返回数据 
     302       [ 
     303             { 
     304                "id": //  文章id 
     305                "title": //  文章标题 
     306                "time":  //  时间 
     307                "image": //  文章图片 
     308             } 
     309             ... 
     310      ] 
     311} 
     312}}} 
     313 
     314==== 6.1 文章终端 ==== 
     315{{{ 
     316  备注:文章终端   
     317  接口说明:同二胎宝典接口--4.资讯文章终端接口 (mrobot) 
     318   [http://trac.pc.com.cn/iphone/wiki/2ndchild/interface#a4.资讯文章终端接口mrobot] 
     319}}}