Changes between Version 2 and Version 3 of pconline_chanpingku/intf


Ignore:
Timestamp:
08/02/2012 10:44:07 AM (14 years ago)
Author:
daiyuwen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pconline_chanpingku/intf

    v2 v3  
    171171=== 3.4 [=#point304 产品发送评论 ] === 
    172172{{{ 
    173  
     173HTTP请求方式:post 
     174请求参数: 
     175  productId: 产品ID 
     176  score  :  分数 从1到5的整数 
     177  title  : 标题   
     178  advantage  :优点 
     179  deficiency   :缺点 
     180  summary           :总结 
     181  common_session_Id    :太平洋网络通行证的sessionId 若为空则匿名发评论 
     182   
     183返回参数: 
     184  { 
     185  stats:"ok", 
     186  msg:"发送成功" 
     187  } 
     188   
     189  Stats发送状态,成功为ok,失败为error, 
     190  msg中显示提示的信息 ,例如必填字段未填,或者其他必要的提示等 
     191   
     192  备注: 
     193网页版类似页面http://product.pconline.com.cn/mobile/samsung/485270_comment.html#dianping 
    174194 
    175195}}} 
     
    177197=== 3.5 [=#point305 显示分类排名前三的品牌 ] === 
    178198{{{ 
    179  
    180  
     199        HTTP请求方式:get 
     200        请求参数: 
     201        typeId :产品类型ID,逗号分割,例如手机20937,台式机20806 
     202 
     203        返回参数: 
     204        { 
     205                "20937":["三星","APPLE","HTC"], 
     206                "256567":["三星","APPLE","HTC"], 
     207                "256568":["三星","APPLE","HTC"] 
     208        } 
     209        备注:返回的顺序按照排名顺序来排 
     210        排名顺序根据类似此报价页面的http://product.pconline.com.cn/notebook 
    181211}}} 
    182212 
    183213=== 3.6 [=#point306 产品搜索热点推荐(编辑出) ] === 
    184214{{{ 
    185  
     215    HTTP请求方式:get 
     216  是否需要登录:否 
     217  请求参数:无 
     218 
     219        返回参数: 
     220        { 
     221                "words":[ 
     222                    "三星","htc","苹果","华为" 
     223                ] 
     224        } 
     225 
     226  备注:返回最多5个关键词 
     227  由编辑设置 
    186228 
    187229}}} 
     
    190232=== 3.7 [=#point307 推荐品牌(编辑出) ] === 
    191233{{{ 
    192  
     234    HTTP请求方式:get 
     235  是否需要登录:否 
     236  请求参数:无 
     237 
     238        返回参数: 
     239  { 
     240        "total": 2, 
     241        "25289": [{ 
     242                "id": 693, 
     243  "name":"联想", 
     244                "logo": "http:\/\/img0.pcauto.com.cn\/pcauto\/1112\/07\/1743776_ACS5050.png", 
     245        }, 
     246        { 
     247                "id": 693, 
     248  "name":"联想", 
     249                "logo": "http:\/\/img0.pcauto.com.cn\/pcauto\/1112\/07\/1743776_ACS5050.png", 
     250        }], 
     251        "25293": [{ 
     252                "id": 693, 
     253  "name":"联想", 
     254                "logo": "http:\/\/img0.pcauto.com.cn\/pcauto\/1112\/07\/1743776_ACS5050.png", 
     255        }, 
     256        { 
     257                "id": 693, 
     258  "name":"联想", 
     259                "logo": "http:\/\/img0.pcauto.com.cn\/pcauto\/1112\/07\/1743776_ACS5050.png", 
     260        }] 
     261   
     262  } 
     263  备注:返回编辑推荐的品牌 
     264  此关键词为编辑设置 
     265   
     266        total:版块集合内部元素的总数 
     267        25289,25293类似的数字,产品类型 
     268        id:品牌id 
     269        logo:品牌logo图片url 
     270  name:品牌名称 
    193271 
    194272}}}