Changes between Version 19 and Version 20 of magazine_interface


Ignore:
Timestamp:
08/24/2015 06:38:51 PM (11 years ago)
Author:
huzhixiang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • magazine_interface

    v19 v20  
    218218        } 
    219219    ] 
     220} 
     221}}} 
     222=== 2.6 获取月刊中文章的评论 === 
     223请求接口: [[BR]] 
     224汽车iPhone&iPad:http://mrobot.pcauto.com.cn/v3/cmt/topics_reverse?url=%@&pageNo=%d&pageSize=%d [[BR]]  
     225家居iPhone&iPad:http://mrobot.pchouse.com.cn/v3/cmt/topics_reverse?url=%@&pageNo=%d&pageSize=%d [[BR]]  
     226时尚iPhone&iPad:http://mrobot.pclady.com.cn/v3/cmt/topics_reverse?url=%@&pageNo=%d&pageSize=%d [[BR]]  
     227请求方式:get [[BR]] 
     228 
     229参数说明 [[BR]] 
     230||参数名||参数含义||参数类型|| 
     231||url||文章相对月刊的路径||str|| 
     232||pageNo||接口的第几页||int|| 
     233||pageSize||一页数据的数量||int|| 
     234示例接口:http://mrobot.pcauto.com.cn/v3/cmt/topics_reverse?url=http://magazine.pcauto.com.cn/497/6566&pageNo=1&pageSize=50 [[BR]] 
     235数据结构: [[BR]] 
     236{{{ 
     237{ 
     238    "data": [ 
     239        { 
     240            "client": 1, 
     241            "content": "外形很好看", 
     242            "createTime": "2015-07-28 14:23:07", 
     243            "face": "http://i6.3conline.com/images/upload/upc/face/0/0_50x50", 
     244            "floor": 27,  ---第几楼 
     245            "id": 29075094, ---用户的通行证id 
     246            "ip": "123.147.246.198", 
     247            "nickName": "重庆市网友", 
     248            "support": 0, 
     249            "userId": 0 
     250        }, 
     251        { 
     252            "client": 1, 
     253            "content": "什么牌子的车", 
     254            "createTime": "2015-06-13 19:01:19", 
     255            "face": "http://i6.3conline.com/images/upload/upc/face/0/0_50x50", 
     256            "floor": 24, 
     257            "id": 28901750, 
     258            "ip": "90.31.166.143", 
     259            "nickName": "太平洋手机网友", 
     260            "replyRefs": [  ---这条是用户评论其他用户的评论数据 
     261                { 
     262                    "content": "lED的车", 
     263                    "createTime": "2015-06-16 16:01:07", 
     264                    "face": "http://i6.3conline.com/images/upload/upc/face/0/0_50x50", 
     265                    "floor": 25, 
     266                    "id": 28911742, 
     267                    "ip": "117.136.8.67", 
     268                    "nickName": "上海市网友", 
     269                    "support": 0, 
     270                    "toReplyFloor": 24, 
     271                    "toReplyNickname": "太平洋手机网友" 
     272                } 
     273            ], 
     274            "support": 2, ---点赞数 
     275            "userId": 0 
     276        } 
     277    ], 
     278    "pageCount": 1, 
     279    "pageNo": 1, 
     280    "pageSize": 50, 
     281    "total": 27  ---总评论数 
    220282} 
    221283}}}