Changes between Version 13 and Version 14 of appapi/4.5


Ignore:
Timestamp:
10/19/2015 03:25:41 PM (10 years ago)
Author:
wanganning
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • appapi/4.5

    v13 v14  
    6969}}} 
    7070 
    71 == 2. 论坛提供APP4.5接口 == 
     71== 3. 论坛提供APP4.5接口 == 
    7272 
    73 // 待添加 
     73==== 3.1. 删除帖子接口 ==== 
     74{{{ 
     75接口:/appapi/1/post/delete [POST] 
     76 
     77请求参数: 
     78    topicId: 主题id [long, not null] 
     79    postId: 帖子id [long, not null] 
     80 
     81是否登录 :是 
     82缓存时间 : 否 
     83是否分页 : 否 
     84     
     85返回结果: 
     86 
     87{ 
     88    status:0成功,-1失败 
     89    desc:提示信息 
     90} 
     91 
     92}}} 
     93 
     94 
     95==== 3.2. 恢复帖子接口 ==== 
     96{{{ 
     97接口:/appapi/1/topic/restore [POST] 
     98 
     99请求参数: 
     100    topicId: 主题id [long, not null] 
     101    postId: 帖子id [long, not null] 
     102    deleteAt: 删除时间(时间戳) [long, not null] 
     103 
     104是否登录 :是 
     105缓存时间 : 否 
     106是否分页 : 否 
     107     
     108返回结果: 
     109 
     110{ 
     111    status:0成功,-1失败 
     112    desc:提示信息 
     113} 
     114 
     115}}}