Changes between Version 8 and Version 9 of intf


Ignore:
Timestamp:
03/23/2016 10:26:25 AM (10 years ago)
Author:
guhenghong
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • intf

    v8 v9  
    250250] 
    251251}}} 
     252 
     253=== 1.3 提供给app的接口 
     254 
     255==== 1.3.1 车友会app帖子详情接口 ==== 
     256{{{ 
     257接口/appapi/1/topic/getTopics  [GET] 
     258说明 : 论坛pc/wap发帖接口 
     259请求参数 : 
     260        *topicId: 帖子id 
     261        pageNo: 页码 
     262        pageSize: 页大小 
     263        desc:  按楼层排序(顺序/降序) 
     264        authorId:查看某人再该贴的回复 
     265 
     266 
     267是否登录 :  
     268缓存时间 : 缓存6小时 
     269是否分页 : 否 
     270 
     271 
     272返回结果: 
     273 "code": 0, 
     274    "message": "操作成功", 
     275    "pageCount": 1, 
     276    "pageNo": 1, 
     277    "pageSize": 19, 
     278    "postList": [ 
     279        { 
     280            "agent": 0, 
     281            "author": { 
     282                "isExpert": false, 
     283                "isVip": false, 
     284                "level": "太平洋舰队新兵", 
     285                "name": "我为傻猪代言", 
     286                "nickname": "我为傻猪代言", 
     287                "userId": 41373379, 
     288                "validBrandIcon": "" 
     289            }, 
     290            "createAt": 1440578296000, 
     291            "floor": 1, 
     292            "forGrade": 1, 
     293            "gradeAmount": 0, 
     294            "gradeCount": 0, 
     295            "message": "就想问下这车性价比怎么样?油耗怎么样??", 
     296            "postId": 81490058, 
     297            "status": 0 
     298        } 
     299    ] 
     300    "topic": { 
     301        "author": { 
     302            "level": "太平洋舰队新兵", 
     303            "name": "我为傻猪代言", 
     304            "nickname": "我为傻猪代言", 
     305            "userId": 41373379 
     306        }, 
     307        "bbsId": 19, 
     308        "createAt": 1440578296000, 
     309        "forumId": 14674, 
     310        "forumName": "嘉年华论坛", 
     311        "isContainImage": false, 
     312        "isLock": false, 
     313        "isPick": false, 
     314        "isRecommend": false, 
     315        "lastPostAt": 1458699802000, 
     316        "replyCount": 9, 
     317        "rights": { 
     318            "allowDeleteTopic": true, 
     319            "allowSettingPick": true 
     320        }, 
     321        "title": "就想问下这车性价比怎么样?油耗怎么样??", 
     322        "type": "question", 
     323        "uri": "http://v71.pcauto.com.cn/topic-8268007.html", 
     324        "view": 3 
     325    }, 
     326    "total": 10, 
     327    "version": "v1.0(latest)" 
     328} 
     329}}}