Changes between Version 1 and Version 2 of pcauto_4.4.0/interface


Ignore:
Timestamp:
07/10/2014 10:29:38 AM (12 years ago)
Author:
hejingdong
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcauto_4.4.0/interface

    v1 v2  
    2121 
    2222== 2.接口列表 == 
     23=== 2.1 [=#point201 小编精选推荐]=== 
     24{{{ 
     25 备注:此接口返回若干个小编精选推荐车系,客户端自动筛选4个用以显示 
     26 请求url: 
     27 HTTP请求方式:get 
     28 是否需要登录:是 
     29 返回格式:json 
     30 缓存方式:无 
     31 缓存时间:无 
     32 请求参数: 
     33 
     341.正常返回: 
     35{ 
     36  "code": 0, 
     37  "total": 40, 
     38  "list":[ 
     39        { 
     40          "id": 2, 
     41          "image": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/13/c9/24440713_1376387144385_270x202.jpg", 
     42          "serialId": 354, 
     43          "serialName": "马自达6", 
     44          "price": "12.98-15.98万" 
     45        } 
     46  ] 
     47} 
     48}}} 
     49 
     50=== 2.1.1 [=#point2011 最新内容]=== 
     51{{{ 
     52 请求url: 
     53 HTTP请求方式:get 
     54 是否需要登录:是 
     55 返回格式:json 
     56 缓存方式:无 
     57 缓存时间:无 
     58 请求参数: 
     59    serialIds=1,2,3 车系id,以逗号间隔 
     60返回结果:说明,除了第1中情况程序出错返回的响应状态为500,其他情况经返回200 
     611.正常返回: 
     62{ 
     63  "code": 0, 
     64  "total": 5, 
     65  "list": [ 
     66    { 
     67      ////资讯格式 
     68      "channelId": 2, 
     69      "channelName": "新车", 
     70      "count": 3, 
     71      "downs": 13, 
     72      "id": "4721075", 
     73      "image": "http://img0.pcauto.com.cn/pcauto/1407/02/g_4688183_1404269779131_240x160.jpg", 
     74      "title": "2014款帅客正式上市 售6.48-9.18万元", 
     75      "type": 1, 
     76      "ups": 13, 
     77      "url": "http://www.pcauto.com.cn/nation/472/4721075.html", 
     78      "type": 3(1为属于资讯,2为论坛,3为购车优惠), 
     79      "date": "2014-5-13  星期二" 
     80    }, 
     81    { 
     82      ////论坛格式 
     83      "count": 14, 
     84      "downs": 39, 
     85      "forumName": "", 
     86      "id": "5037151", 
     87      "image": "http://img0.pcauto.com.cn/pcauto/1407/07/4715883_1.jpg", 
     88      "preView": "[今日话题]一撞就起火 特斯拉值那个价吗?", 
     89      "seq": 4, 
     90      "title": "[今日话题]一撞就起火 特斯拉值那个价吗?", 
     91      "to-uri": "pcautobrowser://bbs-topic/5037151", 
     92      "type": 2, 
     93      "updateAt": 1404662400000, 
     94      "ups": 13, 
     95      "type": 2(1为属于资讯,2为论坛,3为购车优惠), 
     96      "date": "2014-5-13  星期二" 
     97       
     98    }, 
     99    { 
     100      //购车优惠格式 
     101      "id": 2, 
     102      "userId": 24286812, 
     103      "image": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/13/c9/24440713_1376387144385_270x202.jpg", 
     104      "serialId": 354, 
     105      "serialName": "马自达6", 
     106      "price": "12.98-15.98万", 
     107      "lowerPrice": "", 
     108      "city": "", 
     109      "shopType": "4S店", 
     110      "company": "出厂名", 
     111      "type": 3(1为属于资讯,2为论坛,3为购车优惠), 
     112      "date": "2014-5-13  星期二", 
     113    } 
     114  ] 
     115} 
     116 
     117}}}