Changes between Version 61 and Version 62 of appapi/4.2


Ignore:
Timestamp:
06/11/2015 04:04:09 PM (11 years ago)
Author:
guhenghong
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • appapi/4.2

    v61 v62  
    520520==== 1.2.8 车友圈搜查接口 ==== 
    521521{{{ 
    522 接口 /ftree/v3/data.jsp [POST] 
     522接口 /ftree/v3/data.jsp [GET] 
    523523说明 : 主题图片表 
    524524请求参数 : 
     
    549549}}} 
    550550 
    551 ==== 1.2.8 车友圈搜查接口 ==== 
    552 {{{ 
    553 接口 /ftree/v3/data.jsp [POST] 
     551==== 1.2.9 获取用户认证信息 ==== 
     552{{{ 
     553接口 /appapi/1/forum/getAuthorsVip [GET] 
    554554说明 : 主题图片表 
    555555请求参数 : 
     556         uids: ","分割 
    556557        
    557558是否登录 : 是   
     
    562563返回结果: 
    563564{ 
    564    "children": [ 
    565         { 
    566             "children": [ 
    567                 { 
    568                     "children": [ 
    569                         { 
    570                             "me": [ 
    571                                 14359, 
    572                                 "奥迪A4L", 
    573                                 "http://img0.pcauto.com.cn/pcauto/1105/16/1497207_4.jpg" 
    574                             ] 
    575                         }, 
    576    code : 0成功,-1失败 
    577    message : 提示信息 
    578    version : 接口版本号如1.0,1.0(latest)表示最新版本 
     565    "authorsVip": [ 
     566        { 
     567            "isVip": false, 
     568            "uid": 826717, 
     569            "validBrandIcon": "" 
     570        }, 
     571        { 
     572            "isVip": false, 
     573            "uid": 30757353, 
     574            "validBrandIcon": "" 
     575        }, 
     576        { 
     577            "isVip": true, 
     578            "uid": 31312997, 
     579            "validBrandIcon": "http://img2.pcauto.com.cn/pcauto/1011/29/1328175_peugeot.png" 
     580        } 
     581    ], 
     582    "code": 0, 
     583    "message": "操作成功", 
     584    "version": "v1.0(latest)" 
     585} 
     586}}} 
     587==== 1.2.10 获取帖子的前三张图片及主题帖图片总数 ==== 
     588{{{ 
     589接口 /appapi/1/forum/getTopicsImages [GET] 
     590说明 : 主题图片表 
     591请求参数 : 
     592         tids: ","分割 
     593        
     594是否登录 : 是   
     595缓存时间 : 无 
     596是否分页 : 否 
     597 
     598 
     599返回结果: 
     600{ 
     601   "code": 0, 
     602    "message": "操作成功", 
     603    "topicsImage": [ 
     604        { 
     605            "images": [ 
     606                "http://dev2.pconline.com.cn:9191/upcfiles/bbs6/1506/08/c0/17556_1433756675100_240x160.jpg", 
     607                "http://dev2.pconline.com.cn:9191/upcfiles/bbs6/1506/08/c0/17556_1433756675100_240x160.jpg", 
     608                "http://dev2.pconline.com.cn:9191/upcfiles/bbs6/1506/08/c0/17546_1433753457103_240x160.jpg" 
     609            ], 
     610            "imagesSize": 3, 
     611            "tid": 7809185 
     612        }, 
     613        { 
     614            "images": [], 
     615            "imagesSize": 0, 
     616            "tid": 7809184 
     617        } 
     618    ], 
     619    "version": "v1.0(latest)" 
    579620} 
    580621}}}