在线调试
分页查询历史消息
更新时间: 2024/08/21 18:09:55
该接口可以分页查询指定账号在指定时间范围内的历史消息(包括单聊消息,高级群消息和超大群消息)。
调用频率
单个应用默认最高调用频率请参考 频控说明。
请求
URL
GET https://open.yunxinapi.com/im/v2/conversations/:{conversation_id}/messages
Header
请求 Header 的参数说明请参见请求 Header。
路径参数
参数名称 | 类型 | 是否必选 | 描述 | 示例 |
---|---|---|---|---|
conversation_id |
String | 必选 | 会话 ID。会话 ID 需要用户自行拼装,拼装规则:owner_id|conversation_type|other_id 或owner_id|conversation_type|team_id
|
单聊会话:Accid1|1|Accid2 高级群会话: Accid1|2|tid 超大群会话: Accid1|3|tid |
查询参数
参数名称 | 类型 | 是否必选 | 描述 |
---|---|---|---|
begin_time |
Long | 必选 | 查询开始时间(毫秒)。 |
end_time |
Long | 必选 | 查询截止时间(毫秒)。 |
page_token |
String | 可选 | 分页标识符,如果为空,则从第一页开始查询。 |
limit |
Integer | 必选 | 每页返回的消息数上限,最大为 100。小于等于 0,或者大于 100,会报 414 错误。 |
descending |
Boolean | 可选 | 是否按时间正序,true:按时间正序;false:按时间倒序。 |
message_type |
String | 可选 | 指定需要查询的消息类型,可指定多个消息类型,类型之间用","分割。不设置该参数则查询全部类型。 例如"0,1,2,3",其中支持的消息类型如下:0:文本;1:图片;2:语音;3:视频;4:地理位置;5:通知;6:文件;10:提示;11:Robot;100:自定义。 |
check_team_valid |
Boolean | 可选 | 检查高级群是否存在以及查询账号是否为有效的高级群成员。默认为 true(检查),若设置为 false,则只检查高级群是否存在,不检查查询账号是否为群成员。 |
include_no_sense_msg |
Boolean | 可选 | 查询结果中是否需要包含无感知消息,默认为 false(不包含)。 无感知消息具体包括: |
响应
Header
响应 Header 的参数说明请参见响应 Header。
响应体参数
参数名称 | 类型 | 描述 | 是否必返回 |
---|---|---|---|
code |
Integer | 状态码,200 表示请求成功。 | 是 |
msg |
String | 提示信息。请求失败时返回错误信息,请求成功时返回 "success"。 | 是 |
+
data |
Object | 返回的 JSON 数据对象,请求失败则返回空对象。 | 是 |
响应体示例
json{
"code": 200,
"msg": "success",
"data": {
"has_more": true,
"next_token": "MTY5MjE5MTY3MjgyN3wxNTg0MDM3NzU=",
"items": [
{
"text": "{\"msg\":\"30l7mgx1elkf9xi9g7wqc0ry4av43gawqgkecl4f9p46us6kzi\"}",
"message_server_id": 167595237,
"message_client_id": "80227c89-3374-4258-97bd-424db19d5360",
"sender_id": "wmtest2",
"create_time": 1695362207119,
"message_type": 0,
"sender_client_type": "32"
}
]
}
}
错误码
错误码 | 错误码描述 | 错误信息示例 |
---|---|---|
200 | 请求成功 | success |
414 | 参数错误 | parameter error |
102404 | 用户不存在 | account not exist |
108404 | 群不存在 | team not exist |
108302 | 非高级群 | not advanced team |
109404 | 群成员不存在 | team member not exist |
500 | 服务器内部错误 | internal server error |
此文档是否对你有帮助?