你可以使用此接口批量查询会话中的消息。
你可以调用GetConversationMessages
接口,指定你所属的AppId
、会话 ID、查询起始位置和查询条数批量查询会话中的消息。
一次最多查询 20 条消息。
关于调用接口的服务地址、通信协议、字符编码和签名机制,参看调用 OpenAPI。
QPS 不得超过 100。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息请见公共参数。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetConversationMessages | 接口名称。当前 API 的名称为 GetConversationMessages 。 |
Version | String | 是 | 2020-12-01 | 接口版本。当前 API 的版本为 2020-12-01 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
AppId | Integer | 是 | 000000 | 应用的唯一标志 |
ConversationShortId | Long | 是 | 000001 | 会话 ID |
Cursor | Long | 是 | 1666495802476129 | 查询起始位置,即查询起始消息的 Index |
Limit | Long | 是 | 3 | 查询条数 |
Reverse | Integer | 否 |
| 查询方向。
|
下表仅列出本接口特有的返回参数。更多信息请参见返回结构。
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
HasMore | Boolean | true | 是否还有下一页 |
NewCursor | Long | 20 | 下一页起始位置 |
Messages | Array of MessageBody | - | 消息详细信息 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
ConversationType | Integer |
| 会话类型
|
ConversationShortId | Long | 000001 | 会话 ID |
MessageId | Long | 000012 | 消息 ID |
MsgType | Integer |
| 消息类型。
|
Content | String | Your_Content | 消息内容 |
Ext | JSON Map | {"key":"value"} | 消息的扩展字段,key 的数据类型为 String,value 的数据类型为 String。 |
Status | Integer | 0 | 消息状态,取值为0 ,表示消息可见。 |
CreateTime | Long | 1669723135771 | 消息创建时间戳,单位为毫秒 |
Sender | Long | 000010 | 消息发送人 UserId |
AppId | Integer | 000000 | 应用的唯一标志 |
RefMsgInfo | Object of RefMsgInfo | - | 引用消息 |
IndexInConversation | Long | 1669723135894214 | 消息在会话中的位置 |
ClientMsgId | String | "unique-key" | 消息客户端Id,如果端上消息发送失败,会进行重试,可通过此字段进行幂等判断 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
ReferencedMessageId | Long | 10005 | 被引用的消息 ID |
Hint | String | [图片] | 消息引用时展示的文本内容 |
ReferencedMessageType | Integer |
| 被引用的消息类型
|
Status | Integer |
| 被引用的消息状态
|
POST https://rtc.volcengineapi.com?Action=GetConversationMessages&Version=2020-12-01 { "AppId": 000000, "ConversationShortId": 000001, "Cursor": 1666495802476129, "Limit": 3, "Reverse": 0 }
{ "ResponseMetadata": { "RequestId": "Your_RequestId", "Action": "GetConversationMessages", "Version": "2020-12-01", "Service": "rtc", "Region": "cn-north-1" }, "Result": { "HasMore": true, "NewCursor": 1669694740483825, "Messages": [ { "ConversationType": 2, "ConversationShortId": 000001, "MessageId": 000012, "MsgType": 10001, "Content": "Content1", "Ext": { "key": "value" }, "Status": 0, "CreateTime": 1669723106144, "Sender": 000010, "AppId": 000000, "RefMsgInfo": { "ReferencedMessageId": 000013, "Hint": "[图片]", "ReferencedMessageType": 10001, "Status": 0 }, "IndexInConversation": 1669723106241201 }, { "ConversationType": 2, "ConversationShortId": 000001, "MessageId": 000014, "MsgType": 10001, "Content": "Content2", "Ext": { "key": "value" }, "Status": 0, "CreateTime": 1669723123203, "Sender": 000010, "AppId": 000000, "RefMsgInfo": { "ReferencedMessageId": 000013, "Hint": "[图片]", "ReferencedMessageType": 10001, "Status": 0 }, "IndexInConversation": 1669723123272087 }, { "ConversationType": 2, "ConversationShortId": 000001, "MessageId": 000015, "MsgType": 10001, "Content": "Content3", "Ext": { "key": "value" }, "Status": 0, "CreateTime": 1669723270194, "Sender": 000010, "AppId": 000000, "RefMsgInfo": { "ReferencedMessageId": 000013, "Hint": "[图片]", "ReferencedMessageType": 10001, "Status": 0 }, "IndexInConversation": 1669723270235453 } ] } }
您可访问公共错误码,获取更多错误码信息。