Changes between Version 12 and Version 13 of appapi/4.6


Ignore:
Timestamp:
12/09/2015 03:30:56 PM (10 years ago)
Author:
huangchengwei
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • appapi/4.6

    v12 v13  
    202202 
    203203}}} 
     204 
     205==== 2.5 车友圈页--获取帖子分享数 ==== 
     206 
     207{{{ 
     208接口:/1.0/dyna/getdynaShareCountByTopicIds.do [GET] 
     209请求参数: 
     210    topicIds: 帖子id,多个使用半角逗号隔开,最少1个,最多100,不存在的帖子id,分享数为0 
     211 
     212是否登录 :否 
     213缓存时间 : 否 
     214是否分页 : 否 
     215 
     216返回结果: 
     217 
     218{ 
     219    code:0成功,-1失败 
     220    message:提示信息 
     221    version: 接口版本号如1.0,1.0(latest)表示最新版本 
     222 
     223    shareCountList: [ 
     224    { 
     225        topicId: 动态id 
     226        shareCount: 分享数 
     227    }, 
     228    ] 
     229} 
     230 
     231}}}