文档回复列表
1 功能说明
根据文档ID查看文档回复列表
2 接口调用说明
2.1 URL
http://yourdomain.kf5.com/api/v1/forum/post_comm_list
2.2 格式
JSON
2.3 HTTP请求方式
GET, POST
2.4 IP限制
无
2.5 输入参数说明
参数名称 | 是否必须 | 类型 | 描述 |
id | 是 | integer | 文档ID编号 |
currentpage | 否 | integer | 当前显示的数据页数,默认为1,表示第一页 |
pagesize | 否 | integer | 每页显示的记录条数,默认为20条 |
2.6 请求示例
http://yourdomain.kf5.com/api/v1/forum/post_comm_list?id=165&sign=12d45c66523dd069d7c64c22fea10f34
2.7 返回参数说明
参数名称 | 说明 |
err | 返回码。0:执行成功,1:有错误 |
msg | 如果错误,返回错误信息。 |
count | 数据记录的总条数 |
currentpage | 当前显示的数据页数 |
pagesize | 每页显示的记录条数 |
datas | 返回数据 |
id | 回复编号 |
posts_id | 文档编号 |
content | 回复内容 |
user_id | 作者编号 |
created | 发表时间 |
updated | 最后修改时间 |
2.8 正确返回示例
Content-type: text/html; charset=utf-8
{
"err":0,
"msg":"",
"count":"5",
"currentpage":"1",
"pagesize":"20",
"datas":{
"0" : {
"id" : "77"
"posts_id" : "165"
"content" : "test"
"user_id" : "867"
"created" : "1351064099"
"updated" : "1351064099"
}
...
}
}
2.9 错误返回示例
Content-type: text/html; charset=utf-8
{
"err":1,
"msg":"文章不存在"
}
3 备注
无