查询实时会话列表
function getRealtimeConversations(options?: {
count?: number,
startTime?: number,
order?: 0 | 1,
}): Promise<IAsyncRes<IAReceivedConversation[]>>
查询实时会话未读总数
function getRealtimeConTotalUnreadCount(): Promise<IAsyncRes<number>>
清除实时会话未读数
function clearRealtimeConUnreadCount(conversation: IConversationIdentifier): Promise<IAsyncRes>
删除实时会话
function removeRealtimeConversations(conversations: IConversationIdentifier[]): Promise<IAsyncRes>
批量查询实时会话未读数
function getRealtimeConUnreadCounts(conversations: IConversationIdentifier[]): Promise<IAsyncRes<IConversationUnreadCount[]>>
融云 IM 错误码
enum ErrorCode {
RC_REAL_TIME_CONVERSATION_UNAVAILABLE = 34336,}
根据昵称搜索群成员信息
// 变更前
function searchGroupMembers(groupId: string, name: string, option: IPagingQueryOption): Promise<IAsyncRes<IGroupMemberInfo[]>>
// 变更后
function searchGroupMembers(groupId: string, name: string, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>