TIMMsgFindByMsgLocatorList

功能介绍

根据消息定位精准查找指定会话的消息

此接口根据消息定位符精准查找指定会话的消息,该功能一般用于消息撤回时查找指定消息等

一个消息定位符对应一条消息

参数详解

参数名称 参数类型 是否必填 描述
msgFindByMsgLocatorListParams MsgFindByMsgLocatorListParams 定位消息的参数

返回模板

Promise<commonResult<Array<Json_value_msg>>>

{
    code: TIMResult | TIMErrCode;
    desc?: string | undefined;
    json_param?: Array<Json_value_msg> | undefined;
    json_params?: Array<Json_value_msg> | undefined; // 兼容
    user_data?: string | undefined;
}

返回值详解

名称 数值类型 描述
code TIMResultTIMErrCode 返回状态码
desc string | undefined 返回描述
json_param Array< Json_value_msg > | undefined 根据具具体接口返回
json_params Array< Json_value_msg > | undefined 兼容的字段,某些情况下会返回这个,根据具体接口返回
user_data string | undefined ImSDK负责透传的用户自定义数据,未做任何处理

代码示例

import TimRender from "im_electron_sdk/dist/renderer";
const timRenderInstance = new TimRender();
import { MsgFindByMsgLocatorListParams,Json_msg_locator } from "im_electron_sdk/dist/interfaces";
let convId = ''
let convType = 0
let locator : Json_msg_locator = {
    message_locator_is_revoked: false,
    message_locator_time: 0,
    message_locator_seq: 0,
    message_locator_is_self: false,
    message_locator_rand: 0,
    message_locator_unique_id: 0
}
let param:MsgFindByMsgLocatorListParams = {
    conv_id: convId,
    conv_type: convType,
    params: [locator],
    user_data: ''
}
const {code} = await timRenderInstance.TIMMsgFindByMsgLocatorList(param);
if(code == 0){
    // 成功
}

results matching ""

    No results matching ""