Changes between Version 1 and Version 2 of appapi/4.6


Ignore:
Timestamp:
12/01/2015 02:34:20 PM (10 years ago)
Author:
fangxirui
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • appapi/4.6

    v1 v2  
    1 需求原型:http://trac.pc.com.cn/mobile/pototype/pcauto-club/4.6.0/pre2/#p=3_1我的车友会详情页-签到 
     1[[PageOutline(1-100,接口索引)]] 
     2 
     3 
     4需求原型:http://trac.pc.com.cn/mobile/pototype/pcauto-club/4.6.0/v1/#p=3_2签到排行榜 
     5 
     6== 1. 车友会提供APP接口4.6 == 
     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/checkinItems.do [GET] 
     21请求参数: 
     22    clubId: 车友会ID [long] 
     23 
     24是否登录 :否 
     25缓存时间 : 否 
     26是否分页 : 否 
     27 
     28返回结果: 
     29 
     30{ 
     31    code:0成功,-1失败 
     32    message:提示信息 
     33    version: 接口版本号如1.0,1.0(latest)表示最新版本 
     34 
     35    totalCheckin: 签到总人数 
     36    checkinList: 签到用户列表 
     37} 
     38 
     39}}} 
     40 
     41==== 1.2 车友会签到排行榜 ==== 
     42 
     43{{{ 
     44接口:/appapi/1.0/club/checkinRanking.do [GET] 
     45请求参数: 
     46    clubId: 车友会ID [long] 
     47    pageNo: 页码 
     48    pageSize: 页数 
     49 
     50是否登录 :否 
     51缓存时间 : 否 
     52是否分页 : 是 
     53 
     54返回结果: 
     55 
     56{ 
     57    code:0成功,-1失败 
     58    message:提示信息 
     59    version: 接口版本号如1.0,1.0(latest)表示最新版本 
     60 
     61    pageCount: 总页数 
     62    pageNo: 页码 
     63    pageSize: 每页条数 
     64    total: 总数 
     65 
     66    checkinCount: 签到人数 
     67    memberCount: 总人数 
     68 
     69    memberList: [ 
     70    { 
     71        userId: 用户id 
     72        userNickname: 用户昵称 
     73        totalCheckin: 总签到 
     74        continueCheckin: 连续签到 
     75        checkinAt: 签到时间(格式:HH:mm:SS) 
     76        isCheckin: 是否签到(boolean) 
     77    } 
     78    ] 
     79} 
     80 
     81}}} 
     82 
     83=== 2. 车友圈相关