getConversationListByConversaionIds
功能介绍
通过会话ID获取指定会话列表
参数详解
参数名称 |
参数类型 |
是否必填 |
描述 |
conversationIDList |
string[] |
是 |
需要获取会话列表数据的会话id列表 |
返回模板
V2TimValueCallback<V2TimConversation[]>
{
code : number
desc : string
data : V2TimConversation[]
}
返回值详解
代码示例
import { TencentImSDKPlugin } from 'react-native-tim-js';
const getConversationListByConversaionIdsRes =
await TencentImSDKPlugin.v2TIMManager
.getConversationManager()
.getConversationListByConversaionIds([]);
if (getConversationListByConversaionIdsRes.code === 0) {
getConversationListByConversaionIdsRes.data?.forEach((element) => {
element.conversationID;
element.draftText;
element.draftTimestamp;
element.faceUrl;
element.groupAtInfoList;
element.groupID;
element.groupType;
element.isPinned;
element.lastMessage;
element.orderkey;
element.recvOpt;
element.showName;
element.type;
element.unreadCount;
element.userID;
});
}