Changes between Version 21 and Version 22 of pconline_4.0.0/interface


Ignore:
Timestamp:
12/30/2014 09:45:22 AM (11 years ago)
Author:
wuchangbo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pconline_4.0.0/interface

    v21 v22  
    1 === 直播页列表接口 === 
    2 {{{ 
    3 URL: http://mrobot.pconline.com.cn/v2/cms/channels/10 
    4  
    5 请求参数 
    6 pageNo //页码 
    7 pageSize //每页条数 
    8  
    9 返回参数 
    10 { 
    11        total:150 //总条数 
    12        pageNo:1 //当前页码 
    13        totalPage:4 //总页数 
    14        articleList:[ 
    15              { 
    16                     id:123 //直播文章id 
    17                     image:"XXXX" //导读图 
    18                     title:"XXX直播" //名称 
    19                     cmtCount:10 //评论数 
    20                     status:"正在直播" //状态,正在直播,直播已结束 
    21                     pubTime:"" //直播时间,参考专栏发布会直播栏目显示的时间 
    22                     url:"http://live.pconline.com.cn/broadcast.jsp?broadcastId=123" //对应的直播url 
    23              } 
    24        ] 
    25         
    26 } 
    27 }}} 
     1[[TOC]] 
     2 
     3== 1.基本约定 == 
     4{{{ 
     5接口通用参数 
     6req_enc=utf-8(必须放url后面) 
     7resp_enc=utf-8(必须放url后面) 
     8common_session_id=xxxx(以cookies中的优先) 
     9 
     10接口URL: 接口URL 
     11必填参数:参数名=xxx(多种情况用括号解析) 
     12非必填参数:参数名=xxx(多种情况用括号解析) 
     13说明文档参数:添加某特定参数可以直接看接口文档 
     14是否需要登录:是,否 
     15返回格式:json,ssi,xml 
     16缓存方式:接口缓存,对象缓存 
     17缓存时间:缓存时间 
     18返回结果:结果可能情况 
     19}}} 
     20 
     21== 2.接口列表 == 
     22=== 2.1 [=#point201 首页 - 资讯列表] === 
     23备注:此接口返回资讯消息列表,在返回字段里增加资讯类型 
     24 informationType = 0,     //其他 
     25 informationType = 1,     //文章 
     26 informationType = 2,     //帖子 
     27 informationType = 3,     //图集 
     28 informationType = 4,     //新增直播类型 
     29 informationType = 5,     //新增专题类型 
     30 informationType = 6,     //新增聚超值类型 
     31 informationType = 7      //推广类型(广告)要求:1、17-18.5字, 2、加“推广”标签,3、要求能打开自己文章页也可以用webview打开客户指定网页。 
     32 专题类型时,to-uri字段指定专题页网址,且必须包含“type=zt”(旧版本就已经规定过);而且必须包含“browser=commonWebView”参数(表示用专题webview打开);参数“showShareButton={0或者1}”表示是否显示分享按钮,0不显示,1显示 
     33 mrobot接口:http://mrobot.pconline.com.cn/v2/cms/channels/1?pageNo=1&pageSize=20 
     34 后端接口:无 
     35 HTTP请求方式:get 
     36 是否需要登录:否 
     37 返回格式:json 
     38 缓存方式:无 
     39 缓存时间:无 
     40 请求参数: 
     41         pageNo=页码 
     42         pageSize=一页条数,默认20,最大500 
     43 返回参数: 
     44 { 
     45     "articleList": [   //备注:此处无专题类型 
     46        { 
     47            "bigImage": "http://img0.pconline.com.cn/pconline/1409/19/5460676_51_1k6tu9yn_thumb.jpg", 
     48            "cmtCount": 文章评论数, 
     49            "id": 文章id, 
     50            "image": 文章图片地址, 
     51            "pubDate": 发布时间, 
     52            "title": 标题, 
     53            "url": 文章详情地址, 
     54            "informationType": 资讯类型 
     55        } 
     56    ], 
     57    "focus": [      //备注:此处无专题类型 
     58        { 
     59            "counter": "", 
     60            "id":  文章id, 
     61            "image": 文章图片地址,, 
     62            "pubDate": 发布时间, 
     63            "title": 标题, 
     64            "url": 文章详情地址, 
     65            "informationType": 资讯类型 
     66        } 
     67    ], 
     68    "topArticle": [     //备注:只有这里有专题类型 
     69        { 
     70            "image": "http://img.pconline.com.cn/images/upload/upc/tx/pc_best/1409/19/c2/38772308_1411119899458_width600.jpg", 
     71            "preView": "其他类型的资讯,用全屏webview打开,类似聚超值类型", 
     72            "pubDate": "2014-10-09", 
     73            "seq": 7, 
     74            "title": "LG G3移动版仅售3199元 Acer游戏本5K5历史新低", 
     75            "to-uri": "http://g.pconline.com.cn/best/list_288.html?isShowHeader=0&ad=7265", 
     76            "updateAt": 1412784000000, 
     77            "informationType": 0    //其他类型 
     78        }, 
     79        { 
     80            "cmtCount": 26, 
     81            "image": "http://img.pconline.com.cn/images/upload/upc/tx/itbbs/1410/09/c4/39422400_1412824208134_1024x1024.jpg", 
     82            "preView": "64位双4G快时代!酷比魔方&联发科技4G战略发布会", 
     83            "pubDate": "2014-10-09", 
     84            "seq": 8, 
     85            "title": "快时代!酷比魔方&联发科技4G战略发布会 参与互动送平板", 
     86            "to-uri": "pconlinebrowser://information-article/322?template=live", 
     87            "updateAt": 1412784000000, 
     88            "informationType": 1    //文章类型 
     89        }, 
     90        { 
     91            "floorCount": 9, 
     92            "image": "http://img.pconline.com.cn/images/upload/upc/tx/itbbs/1410/09/c3/39418150_1412820169882_1024x1024.jpg", 
     93            "preView": "HTC发布的奇特造型RE相机新品,你喜欢吗?", 
     94            "pubDate": "2014-10-09", 
     95            "seq": 5, 
     96            "title": "HTC发布的奇特造型RE相机新品,你喜欢吗?", 
     97            "to-uri": "pconlinebrowser://bbs-topic/51812318", 
     98            "updateAt": 1412784000000, 
     99            "informationType": 2    //论坛类型 
     100        }, 
     101        { 
     102            "image": "http://img.pconline.com.cn/images/upload/upc/tx/itbbs/1410/09/c5/39426075_1412827383297_1024x1024.jpg", 
     103            "imgCount": 17, 
     104            "preView": "HTC Desire Eye手机和RE相机图赏\t", 
     105            "pubDate": "2014-10-09", 
     106            "seq": 6, 
     107            "title": "HTC Desire Eye手机和RE相机图赏\t", 
     108            "to-uri": "pconlinebrowser://album-photo/13404", 
     109            "updateAt": 1412784000000, 
     110            "informationType": 3    //图集类型 
     111        }, 
     112        { 
     113            "cmtCount": 279, 
     114            "image": "http://img.pconline.com.cn/images/upload/upc/tx/itbbs/1410/08/c6/39379595_1412740065734_1024x1024.jpg", 
     115            "preView": "[图文直播]HTC自拍神器旗舰新品发布会", 
     116            "pubDate": "2014-10-09", 
     117            "seq": 12, 
     118            "title": "HTC自拍神器旗舰新品发布会回顾  Desire Eye手机及RE相机发布", 
     119            "to-uri": "pconlinebrowser://information-article/323?template=live", 
     120            "updateAt": 1412784000000, 
     121            "informationType": 4    //直播类型 
     122        }, 
     123        { 
     124            "image": "http://img0.pcauto.com.cn/pcauto/1410/03/g_5242861_1412322026811_240x160.jpg", 
     125            "preView": "2014巴黎车展:12款重磅SUV/即将引进", 
     126            "pubDate": "2014-10-09", 
     127            "seq": 17, 
     128            "title": "2014巴黎车展:12款重磅SUV/即将引进", 
     129            "to-uri": "http://www1.pcauto.com.cn/app/cheshi/index.html?type=zt&fromapp=1&browser=commonWebView", 
     130            "updateAt": 1412784000000, 
     131            "informationType": 5    //专题类型  
     132        }, 
     133        { 
     134            "image": "http://img.pconline.com.cn/images/upload/upc/tx/pc_best/1409/19/c2/38772308_1411119899458_width600.jpg", 
     135            "preView": "今日聚超值", 
     136            "pubDate": "2014-10-09", 
     137            "seq": 7, 
     138            "title": "LG G3移动版仅售3199元 Acer游戏本5K5历史新低", 
     139            "to-uri": "http://g.pconline.com.cn/best/list_288.html?isShowHeader=0&ad=7265", 
     140            "updateAt": 1412784000000, 
     141            "informationType": 6    //聚超值类型 
     142        } 
     143    ], 
     144     "topFocus": [      //备注:此处无专题类型 
     145        { 
     146            "cc-uri": "", 
     147            "image": "http://imgad0.pconline.com.cn/ivy/image/20149/25/14116394470770.jpg", 
     148            "seq": 3, 
     149            "title": "广告", 
     150            "to-uri": "http://ivy.pconline.com.cn/adpuba/click?adid=334508&id=pc.khd.zx.jdt.", 
     151            "updateAt": 1412824722772, 
     152            "vc-uri": "http://ivy.pconline.com.cn/adpuba/show?adid=334508&id=pc.khd.zx.jdt.&media=js" 
     153        } 
     154    ], 
     155    ... 
     156    "total": 文章总数量   
     157 } 
     158 
     159 
     160 
     161 
    28162 
    29163== 栏目配置 ==