Changes between Initial Version and Version 1 of magazine_pclady/interface/2.0.0


Ignore:
Timestamp:
05/21/2015 04:17:52 PM (11 years ago)
Author:
lianchijin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • magazine_pclady/interface/2.0.0

    v1 v1  
     1== 一.接口列表 == 
     2=== 1.0 书架接口 === 
     3{{{ 
     4  备注:获取书架接口数据 
     5  接口开发:黎国凯,邓宇荣 
     6  接口url:参照说明 http://trac.pc.com.cn/magazine-ios/wiki/interface 
     7 
     8  HTTP请求方式:get 
     9  是否需要登录:否 
     10  返回格式:JSON 
     11  是否有缓存:无 
     12  缓存时间: 
     13  请求参数: 
     14  
     15  返回参数 
     16{ 
     17  "recommendedMagazine": {  //推荐杂志数据 
     18     
     19  }, 
     20  "magazines": [  //书架列表 
     21    { 
     22      "id": "846", 
     23      "magazine": "PCauto", 
     24      "publisher": "汽车网", 
     25      "volume": "0", 
     26      "bookDownloadStatus": "1", 
     27      "issue": "打法", 
     28      "publishTime": "2015-05-21 10:26:30", 
     29      "cover": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/cover\/846-big.jpg?201505211026", 
     30      "thumb": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/cover\/846-small.jpg?201505211026", 
     31      "dir-ver": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/content\/846-ver-dir.jpg", 
     32      "summary": "", 
     33      "url": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/846.zip", 
     34      "base_url": "", 
     35      "base_url_prefix": "", 
     36      "deviceType": "0", 
     37      "md5": "", 
     38      "bestTopicUrl": "", 
     39      "size": "" 
     40    } 
     41], 
     42  "weekly": [   //周刊杂志(焦点图数据) 
     43    { 
     44      "id": "858", 
     45      "magazine": "PCauto", 
     46      "publisher": "汽车网", 
     47      "volume": "0", 
     48      "bookDownloadStatus": "1", 
     49      "issue": "99999", 
     50      "publishTime": "2015-05-21 15:21:36", 
     51      "cover": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/cover\/858-big.jpg?201505211521",  //基础包封面 
     52      "thumb": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/cover\/858-small.jpg?201505211521",  //基础包缩略图 
     53      "dir-ver": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/content\/858-ver-dir.jpg", 
     54      "summary": "", 
     55      "url": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/858.zip", 
     56      "base_url": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/seperatepack\/858\/858-base.zip", 
     57      "base_url_prefix": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/seperatepack\/858\/", 
     58      "deviceType": "0", 
     59      "md5": "b75024270b2653d937827dc2face0571", 
     60      "bestTopicUrl": "", 
     61      "size": "0.14MB", 
     62      "focus": [ 
     63        { 
     64          "image": "http:\/\/192.168.21.39:8083\/magazine\/preview\/ipad2\/focus\/article-5890-858.jpg", 
     65          "articleId": "5890", //焦点图文章id 
     66          "title": "4444" 
     67        } 
     68      ], 
     69      "updateTime": 1432192897609 
     70    } 
     71  ] 
     72} 
     73}}}