文档
测试

查询信息(服务群)

POST
https://api.ifafu.cn/information/query/group

接口描述

查询在 timestamp 时间之后通过审核(指为服务群专门设置的审核)的信息

请求参数

参数名
类型
描述
必填
timestamp
long
时间戳,单位:毫秒 查询在此时间之后通过审核的信息
必填

响应参数

参数名
类型
描述
必填
code
int
返回码 200:成功
必填
message
string
返回信息
必填
data
array
返回数据
必填
id
long
信息ID
必填
content
string
信息内容
必填
comments
object
评论(忽略)
必填
contactType
int
联系方式类型 0:无 1:手机 2:QQ 3:微信
必填
contact
string
联系方式
必填
date
date
信息提交时间(注意区别审核时间)
必填
status
int
审核状态 1:通过审核
必填
imageUrls
array
图片地址数组
必填

说明 / 示例

```json { "code": 200, "message": "成功", "data": [ { "id": 1, "content": "内容", "contact": "27907670", "comments": null, "contactType": 2, "date": "2020-08-27T17:24:07.000+00:00", "status": 1, "imageUrls": [ "http://192.168.199.240:8080/file/download?id=52bbf4bd-f6bb-4716-ac6e-a3eb75e2d3c5" ] }, { "id": 2, "content": "内容", "contact": "27907670", "comments": null, "contactType": 2, "date": "2020-08-27T17:24:07.000+00:00", "status": 1, "imageUrls": [ "http://192.168.199.240:8080/file/download?id=52bbf4bd-f6bb-4716-ac6e-a3eb75e2d3c5" ] } ] } ```