Changes between Version 1 and Version 2 of appapi/4.7


Ignore:
Timestamp:
01/14/2016 03:09:09 PM (10 years ago)
Author:
fangxirui
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • appapi/4.7

    v1 v2  
    22 
    33 
    4 需求原型:http://trac.pc.com.cn/mobile/pototype/pcauto-club/4.7.0/pre2/#p=2_1热门话题页改版 
     4需求原型:http://trac.pc.com.cn/mobile/pototype/pcauto-club/4.6.1/pre1/#p=1_1热门话题页改版 
     5 
     6== 1. 车友会提供APP接口4.7 == 
     7   PC端开发环境域名:dev18.pcauto.com.cn 
     8 
     9   WAP端开发环境域名:dev43.pcauto.com.cn:83/club 
     10 
     11   PC端线上环境域名:club.pcauto.com.cn 
     12 
     13   WAP端线上域名:m.pcauto.com.cn/club 
     14 
     15=== 1. 旧接口修改 
     16 
     17==== 1.1 推荐车友会列表 ==== 
     18 
     19{{{ 
     20    接口:/appapi/1.0/club/getRecommendClubs.do [GET] 
     21 
     22    返回结果新增字段: 
     23    { 
     24        recommendClubs: [ 
     25            { 
     26                theme: XXX 
     27            } 
     28            .... 
     29        ] 
     30    } 
     31 
     32}}} 
     33 
     34==== 1.2 申请中车友会列表 ==== 
     35 
     36{{{ 
     37    接口:/appapi/1.0/club/getApplyClubs.do [GET] 
     38 
     39    返回结果新增字段: 
     40    { 
     41        applyClubs: [ 
     42            { 
     43                theme: XXX 
     44            } 
     45            .... 
     46        ] 
     47    } 
     48 
     49}}} 
     50 
     51==== 1.3 话题列表--热门 ==== 
     52 
     53{{{ 
     54    接口:/appapi/1.0/subject/hotSubjectList.do [GET] 
     55 
     56    返回结果新增字段: 
     57    { 
     58        subjectList: [ 
     59            { 
     60                replyCount: 讨论数 
     61                viewCount: 阅读数 
     62            } 
     63            .... 
     64        ] 
     65    } 
     66 
     67}}} 
     68 
     69 
     70=== 2. 新增接口 
     71 
     72==== 2.1 话题列表--最新 ==== 
     73 
     74{{{ 
     75    接口:/appapi/1.0/subject/newestSubjectList.do [GET] 
     76 
     77    返回结果参考热门1.3话题: 
     78    { 
     79        subjectList: [ 
     80            { 
     81                .... 
     82                replyCount: 讨论数 
     83                viewCount: 阅读数 
     84                .... 
     85            } 
     86            .... 
     87        ] 
     88    } 
     89 
     90}}}