[[PageOutline(1-100,接口索引)]] 需求原型:http://trac.pc.com.cn/mobile/pototype/pcauto-club/4.6.1/pre1/#p=1_1热门话题页改版 == 1. 车友会提供APP接口4.7 == PC端开发环境域名:dev18.pcauto.com.cn WAP端开发环境域名:dev43.pcauto.com.cn:83/club PC端线上环境域名:club.pcauto.com.cn WAP端线上域名:m.pcauto.com.cn/club === 1. 旧接口修改 ==== 1.1 推荐车友会列表 ==== {{{ 接口:/appapi/1.0/club/getRecommendClubs.do [GET] 返回结果新增字段: { recommendClubs: [ { theme: XXX } .... ] } }}} ==== 1.2 申请中车友会列表 ==== {{{ 接口:/appapi/1.0/club/getApplyClubs.do [GET] 返回结果新增字段: { applyClubs: [ { theme: XXX } .... ] } }}} ==== 1.3 话题列表--热门 ==== {{{ 接口:/appapi/1.0/subject/hotSubjectList.do [GET] 返回结果新增字段: { subjectList: [ { replyCount: 讨论数 viewCount: 阅读数 } .... ] } }}} === 2. 新增接口 ==== 2.1 话题列表--最新 ==== {{{ 接口:/appapi/1.0/subject/newestSubjectList.do [GET] 返回结果参考热门1.3话题: { subjectList: [ { .... replyCount: 讨论数 viewCount: 阅读数 .... } .... ] } }}}