Options
All
  • Public
  • Public/Protected
  • All
Menu

RongIMLib - v5.14.1

Index

会话

消息

超级群

订阅用户状态

Basic

Chatroom

Conversation

Conversation Unread Count

Draft

Enum

Friend

Friends

Group

Interface

Message

Message Template

Subscription user status

Tag

Tags

Type

Ultra group

User profile

User profiles

blacklist

enum

interface

其他

好友

会话

  • 设置会话免打扰

    description

    支持按照 NotificationLevel 类型进行免打扰级别设置,级别描述如下: -1: 全部消息通知(接收全部消息通知 -- 显示指定关闭免打扰功能) 0: 未设置(向上查询群或者APP级别设置)//存量数据中0表示未设置 1: 群聊超级群仅@消息通知(现在通知)单聊代表全部消息通知 2: @ 指定用户通知 3: @ 群用户组通知,通知用户组暂未实现,暂不暴露出去 4: @ 群全员通知 5: 消息通知被屏蔽,即不接收消息通知

    since

    5.3.0

    example

    设置会话免打扰示例:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const notificationLevel = RongIMLib.NotificationLevel.NOT_MESSAGE_NOTIFICATION;
    const res = await RongIMLib.setConversationNotificationLevel(options, notificationLevel);
    console.info('设置会话免打扰结果:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

消息

  • 发送文件消息

    description

    发送文件消息的快捷方式,等同于使用 new FileMessage() 创建消息体后调用 sendMessage() 方法,支持文件上传,上传成功后自动发送消息

    example

    发送文本消息示例:

    const msgBody = { file }; // file 为待上传文件
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId'
    }
    const sendRes = await RongIMLib.sendFileMessage(conversation, msgBody);
    console.info('消息发送结果:', sendRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    返回一个 IAsyncRes 类型 Promise,data 结构为 IAReceivedMessage 类型

  • 发送图片消息

    description

    发送图片消息的快捷方式,等同于使用 new ImageMessage() 创建消息体后调用 sendMessage() 方法,支持图片上传,上传成功后自动发送消息

    example

    发送图片消息示例:

    const msgBody = { file }; // file 为待上传图片
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId'
    }
    const sendRes = await RongIMLib.sendImageMessage(conversation, msgBody);
    console.info('消息发送结果:', sendRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    返回一个 IAsyncRes 类型 Promise,data 结构为 IAReceivedMessage 类型

  • 发送 GIF 图片消息

    description

    发送 GIF 图片消息的快捷方式,等同于使用 new GIFMessage() 创建消息体后调用 sendMessage() 方法,支持 GIF 图片上传,上传成功后自动发送消息

    example

    发送 GIF 图片消息示例:

    const msgBody = { file }; // file 为待上传 GIF 图片
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId'
    }
    const sendRes = await RongIMLib.sendGIFMessage(conversation, msgBody);
    console.info('消息发送结果:', sendRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    返回一个 IAsyncRes 类型 Promise,data 结构为 IAReceivedMessage 类型

  • 发送高清语音消息

    description

    待发送的文件必须为 AAC 音频文件。 发送高清语音消息的快捷方式,等同于使用 new HQVoiceMessage() 创建消息体后调用 sendMessage() 方法,支持高清语音上传,上传成功后自动发送消息

    example

    发送高清语音消息示例:

    const msgBody = { file }; // file 为待上传高清语音
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId'
    }
    const sendRes = await RongIMLib.sendHQVoiceMessage(conversation, msgBody);
    console.info('消息发送结果:', sendRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    返回一个 IAsyncRes 类型 Promise,data 结构为 IAReceivedMessage 类型

  • 发送小视频消息

    description

    发送的小视频消息必须是 MP4 文件,且音频编码为 AAC,视频编码 H264,否则可能造成 iOS 或 Android 接收后不可播放问题。 发送小视频消息的快捷方式,等同于使用 new SightMessage() 创建消息体后调用 sendMessage() 方法,支持小视频上传,上传成功后自动发送消息

    example

    发送小视频消息示例:

    const msgBody = { file, duration: 10, thumbnail: 'base64' }; // file 为待上传小视频,duration 为小视频时长,thumbnail 为小视频封面 base64
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId'
    }
    const sendRes = await RongIMLib.sendSightMessage(conversation, msgBody);
    console.info('消息发送结果:', sendRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    返回一个 IAsyncRes 类型 Promise,data 结构为 IAReceivedMessage 类型

  • 多端同步阅读状态

    description

    由于未读消息数存储在本地,服务器不存未读消息数量。当用户多端登录时,需要同步未读消息数以保证多端未读数一致

    example

    多端同步阅读状态示例:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const timestamp = 1632728573423; // 阅读消息的 sendTime
    const syncReadStatusRes = await RongIMLib.sendSyncReadStatusMessage(conversation, timestamp);
    console.info('多端同步阅读状态:', syncReadStatusRes);

    Parameters

    • conversation: IConversationOption

      会话信息

    • timestamp: number

      需要同步消息阅读的时间戳,可以在消息体中通过消息的 sendTime 获取

    Returns Promise<IAsyncRes<void>>

  • 按消息 UId 删除消息

    description

    根据消息的 ID、时间戳和方向(发送或接收)从服务端删除指定单个会话中的一条或一组消息。 注意

    1. 删除消息仅会删除本端消息,不会删除对端消息。A 与 B 之间的消息,A 删除消息后,B 仍然可以看到消息。如 B 需要无法查看需要调用撤回消息 recallMessage接口。
    2. 仅适用于 App Key 已开通单群聊消息云端存储 的 App。
    3. 服务端默认不会删除对应的离线消息补偿,如需彻底删除消息补偿,请提交工单,申请开通删除服务端历史消息时同时删除多端补偿的离线消息。
    example

    按消息 UId 删除消息示例:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    };
    const messages = [{
    messageUId: 'BS4O-P5AO-D1O6-9GPP', // 消息 UId
    sentTime: 1632728573423, // 消息发送时间
    messageDirection: RongIMLib.MessageDirection.SEND, // 消息方向
    }];
    const deleteRes = await RongIMLib.deleteMessages(conversation, messages);
    console.info('删除消息结果:', deleteRes);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • 更新(添加、替换)消息扩展属性

    description

    消息扩展功能可为消息增加基于 Key/Value 的状态标识。消息的扩展信息可在发送前、后设置或更新,可用于实现消息评论、礼物领取、订单状态变化等业务需求。 注意

    1. 单条消息单次最多可设置 20 个扩展信息 KV 对,总计不可超过 300 个扩展信息 KV 对。
    2. 消息扩展(Key、Value 扩展信息)会被存储。如已开通历史消息云存储功能,从服务端获取的历史消息也会携带已设置的扩展信息。
    3. 仅支持单聊、群聊会话类型,不支持聊天室类型。
    4. 仅当发送消息时指定 canIncludeExpansion 值为 true,才可对消息进行拓展。
    example

    更新(添加、替换)消息扩展属性示例:

    const expansion = { key1: 'value1' };
    // message 为 IAReceivedMessage 类型消息体,此处不做具体示例,可在消息监听或者获取历史消息接口获取需要操作的 message
    const updateRes = await RongIMLib.updateMessageExpansion(expansion, message);
    console.info('更新消息扩展属性结果:', updateRes);

    Parameters

    • expansion: {}

      要更新的消息扩展信息键值对

      • [key: string]: any
    • message: IAReceivedMessage

      要更新的原始消息体

    Returns Promise<IAsyncRes<void>>

  • 删除扩展存储

    description

    删除消息扩展信息中指定的 Key

    params

    keys 需删除消息扩展的 keys

    params

    message 原始消息体

    example

    删除扩展存储示例:

    const keys = ['key1'];
    // message 为 IAReceivedMessage 类型消息体,此处不做具体示例,可在消息监听或者获取历史消息接口获取需要操作的 message
    const removeRes = await RongIMLib.removeMessageExpansionForKey(keys, message);
    console.info('删除扩展存储结果:', removeRes);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • registerMessageType<T>(messageType: string, isPersited: boolean, isCounted: boolean, searchProps?: string[], isStatusMessage?: boolean): (new (content: T) => BaseMessage<T>)
  • 注册自定义消息

    description

    注册自定义消息,用于定义自定义消息的类型,会影响消息的发送和接收 注意

    1. 注册自定义消息代码必须在发送、接收该自定义消息之前
    2. 推荐将所有注册自定义消息代码放在 init 方法之后, connect 方法之前
    3. 注册的消息类型名, 必须多端一致, 否则消息无法互通
    4. 请勿使用 RC: 开头的类型名,以免和 SDK 默认的消息名称冲突,自定义消息的消息类型名如和 SDK 默认的消息类型名相同以 SDK 默认的消息定义名为准
    5. 需要再 connect 之前调用防止手消息行为异常
    example
    const messageType = 'CustomMessage';
    const isPersited = true;
    const isCounted = true;
    const searchProps = ['content']; // 搜索字段
    const isStatusMsg = false;
    const CustomMessage = RongIMLib.registerMessageType(messageType, isPersited, isCounted, searchProps, isStatusMsg);

    Type Parameters

    • T

    Parameters

    • messageType: string

      消息类型

    • isPersited: boolean

      是否存储

    • isCounted: boolean

      是否计数

    • Optional searchProps: string[]

      可搜索的属性,web 端无需设置,搜索字段值设置为数字时取值范围为 (-Math.pow(2, 64), Math.pow(2, 64)) 且为整数

    • Optional isStatusMessage: boolean

      是否状态消息,状态消息不计数,不存储,接收方在线时才能收到

    Returns (new (content: T) => BaseMessage<T>)

    返回一个 BaseMessage 类型的构造函数

超级群

  • 从服务端获取特定批量消息

    description

    根据消息的 Uid 从服务端获取特定批量消息

    since

    5.2.0 仅 Web 端 IMLib 支持超级群。Electron 解决方案暂不适用于超级群业务。

    example

    从服务端获取特定批量消息示例:

    const options = {
    conversationType: RongIMLib.ConversationType.ULTRA_GROUP,
    targetId: 'targetId',
    channelId: 'channelId',
    };
    // sendTime 为消息的发送时间,此处示例为假数据
    const messages = [{ messageUId: 'messageUId1', sendTime: 1626864000000, }];
    const res = await RongIMLib.getUltraGroupMessageListByMessageUId(options, messages);
    console.log('从服务端获取特定批量消息结果:', res);

    Parameters

    Returns Promise<IAsyncRes<{}>>

    返回一个 IAsyncRes 类型 Promise,data 为消息列表,code 接口返回状态码 从 SDK 版本 @since 5.7.0 开始,该接口的返回数据类型由 IReceivedMessage 变更为 IAReceivedMessage

  • 设置、更新消息扩展信息

    description

    设置、更新消息扩展信息,用于超级群消息扩展信息的设置、更新,消息扩展信息 适用场景:原始消息增加状态标识的需求,都可使用消息扩展

    1. 消息评论需求,可通过设置原始消息扩展信息的方式添加评论信息。
    2. 礼物领取、订单状态变化需求,通过此功能改变消息显示状态。 例如:向用户发送礼物,默认为未领取状态,用户点击后可设置消息扩展为已领取状态 注意
    3. 每次设置消息扩展将会产生内置通知消息,频繁设置扩展会产生大量消息
    4. 仅当发送消息时指定 canIncludeExpansion 值为 true,才可对消息进行扩展
    since

    5.2.0 仅 Web 端 IMLib 支持超级群。Electron 解决方案暂不适用于超级群业务。

    example

    设置、更新消息扩展信息示例:

    const expansion = { key1: 'value1' };
    const message = {} // 需要设置的消息,类型为 IAReceivedMessage
    const res = await RongIMLib.updateExpansionForUltraGroupMessage(expansion, message);
    console.log('设置、更新消息扩展信息结果:', res);

    Parameters

    • expansion: {}

      消息扩展信息,类型是 Object。Key 支持大小写英文字母、数字、 特殊字符+ = - _ 的组合方式,不支持汉字。最大 32 个字符。
      (SDK < 5.3.0)Value 最大 64 个字符
      (SDK ≧ 5.3.0)Value 最大 4096 个字符

      • [key: string]: any
    • message: IAReceivedMessage

      接收到的消息,类型是 IAReceivedMessage

    Returns Promise<IAsyncRes<void>>

    返回一个 IAsyncRes 类型 Promise,code 接口返回状态码

  • 删除消息扩展

    description

    删除消息扩展,用于超级群消息扩展信息的删除,消息扩展信息

    since

    5.2.0 仅 Web 端 IMLib 支持超级群。Electron 解决方案暂不适用于超级群业务。

    example

    删除消息扩展示例:

    const expansion = ['key1'];
    // message 需要删除扩展的消息,类型为 IAReceivedMessage,此处示例伪代码
    const res = await RongIMLib.removeExpansionForUltraGroupMessage(expansion, message);
    console.log('删除消息扩展结果:', res);

    Parameters

    • expansion: string[]

      消息扩展信息的 key 数组,类型是 Array。Key 支持大小写英文字母、数字、特殊字符+ = - _ 的组合方式,不支持汉字。最大 32 个字符

    • message: IAReceivedMessage

      接收到的消息,类型是 IAReceivedMessage

    Returns Promise<IAsyncRes<void>>

    返回一个 IAsyncRes 类型 Promise,code 接口返回状态码

  • 删除指定消息上的所有扩展

    description

    删除指定消息上的所有扩展,用于超级群消息扩展信息的删除,消息扩展信息

    since

    5.2.0 仅 Web 端 IMLib 支持超级群。Electron 解决方案暂不适用于超级群业务。

    example

    删除指定消息上的所有扩展示例:

    // message 需要删除扩展的消息,类型为 IAReceivedMessage,此处示例伪代码
    const res = await RongIMLib.removeAllExpansionForUltraGroupMessage(message);
    console.log('删除指定消息上的所有扩展结果:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

    返回一个 IAsyncRes 类型 Promise,code 接口返回状态码

  • 修改消息

    description

    用户在成功发送超级群消息后,可以主动修改已发送消息的消息内容 消息被修改后,IAReceivedMessage 对象的 isModifyMessage 属性会被更新为 true 注意

    1. 消息类型无法修改。如果改前为文本消息,则传入的新消息内容必须为 ITextMessageBody 类型
    2. 无法修改他人发送的消息。
    since

    5.2.0 仅 Web 端 IMLib 支持超级群。Electron 解决方案暂不适用于超级群业务。

    example

    修改消息示例:

    const content = { text: '修改后的消息内容' };
    // message 需要修改的消息,类型为 IAReceivedMessage,此处示例伪代码
    const res = await RongIMLib.modifyMessage(content, message);
    console.log('修改消息结果:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

    返回一个 IAsyncRes 类型 Promise,code 接口返回状态码

订阅用户状态

  • subscribeUserStatus(userIds: string[], subscribeType: SubscribeType, expiry: number): Promise<IAsyncRes<string[]>>
  • 订阅用户状态

    description

    此方法用于订阅一组用户的状态。当这些用户的状态发生变化时,将通过回调接口通知调用者 注意

    1. 一次订阅用户的上限为 200 个, 订阅的用户数最多为 1000 个,一个用户最多可以被 5000 个用户订阅
    2. 订阅用户在线状态能力需要开通服务,开通路径: IM 服务 > IM 服务管理 > 客户端用户在线状态订阅
    since

    5.9.8

    example

    订阅用户状态示例:

    const userIds = ['user1', 'user2'];
    const subscribeType = RongIMLib.SubscribeType.ONLINE_STATUS;
    // 设置订阅时间,取值范围为[60,2592000](单位:秒)。
    const expiry = 60;
    const res = await RongIMLib.subscribeUserStatus(userIds, subscribeType, expiry);
    console.log('订阅用户状态结果:', res);

    Parameters

    • userIds: string[]

      被订阅用户 ID 列表,一次最多订阅 200 个用户

    • subscribeType: SubscribeType

      订阅类型

    • expiry: number

      订阅有效期,取值范围为[60,2592000](单位:秒)

    Returns Promise<IAsyncRes<string[]>>

    返回一个 IAsyncRes 类型 Promise,订阅错误为 26021 时返回被订阅达上限(用户最多可以被 5000 个用户订阅)的用户 ID 列表

Basic

  • connect(token: string, reconnectKickEnable?: boolean): Promise<IAsyncRes<{ userId: string }>>
  • Establish IM connection

    description

    Passes the user authentication token (Token) to initiate a connection request to the RC chat server. Note:

    1. The connect() method must be called after SDK initialization init to establish the connection. Otherwise, callbacks may not be triggered.
    2. The SDK has an automatic reconnection mechanism. It is unnecessary to call connect() multiple times within the application lifecycle.
    3. Call it once during the application lifecycle.
    example

    Example of establishing an IM connection:

    const token = '<Your-token>';
    const res = await RongIMLib.connect(token);
    console.info('IM connection result:', res);

    Parameters

    • token: string
    • Optional reconnectKickEnable: boolean

      Specifies whether to kick out the currently reconnecting device when reconnecting (only valid in Electron environment) By default, only one desktop device is allowed to log in with the same user account. Once a new Electron device successfully connects, the previously logged-in device will be automatically kicked out. In some cases, the SDK's reconnection mechanism may prevent the newly logged-in device from staying online properly.

    Returns Promise<IAsyncRes<{ userId: string }>>

  • disconnect(closeDB?: boolean): Promise<void>
  • Disconnect

    description

    After calling this method, you will no longer receive messages, cannot send messages, cannot retrieve historical messages, and cannot fetch the conversation list. Use Case: Recommended for account logout or account switching scenarios.

    example

    Example of disconnecting:

    await RongIMLib.disconnect();
    console.info('Disconnected successfully');
    ```ts

    Parameters

    • Optional closeDB: boolean

      Specifies whether to close the database. Default is true. Only effective on the Electron platform.

    Returns Promise<void>

  • addEventListener<T>(eventType: T, listener: EventListeners[T], target?: any): void
  • Add event listener

    description

    Used to receive various event notifications from IMLib. Multiple listener functions can be added for the same event type. For events that should only be triggered once, use onceEventListener.

    example

    Example of adding an event listener:

    RongIMLib.addEventListener(RongIMLib.Events.CONNECTED, () => {
    console.log('Connection established');
    });

    Type Parameters

    Parameters

    • eventType: T

      Event name

    • listener: EventListeners[T]

      Event listener function

    • Optional target: any

    Returns void

  • onceEventListener<T>(eventType: T, listener: EventListeners[T], target?: any): void
  • Add a listener (executed only once)

    description

    Used to receive various event notifications from IMLib

    example

    Example of adding a listener:

    RongIMLib.onceEventListener(RongIMLib.Events.CONNECTED, () => {
    console.log('Connection established');
    });

    Type Parameters

    Parameters

    • eventType: T

      Event name

    • listener: EventListeners[T]

      Event listener function

    • Optional target: any

    Returns void

  • removeEventListener<T>(eventType: T, listener: EventListeners[T], target?: any): void
  • Remove event

    description

    The business layer should use removeEventListener or removeEventListeners to remove event listeners when necessary to avoid memory leaks.

    example

    Example of removing an event:

    const listener = (evt) => console.log(evt.messages)
    RongIMLib.removeEventListener(Events.MESSAGES, listener);

    Type Parameters

    Parameters

    • eventType: T

      Event name

    • listener: EventListeners[T]

      Event listener function

    • Optional target: any

    Returns void

  • removeEventListeners(eventType: string): void
  • Remove all events of the same type

    description

    Removes all listener functions for a specific event

    example

    Example of removing an event:

    RongIMLib.removeEventListeners(Events.MESSAGES);
    

    Parameters

    • eventType: string

      Event name

    Returns void

  • clearEventListeners(): void
  • Clear all events

    example

    Example of clearing all events:

    RongIMLib.clearEventListeners();
    

    Returns void

  • Initialization

    description

    Initializes the IM SDK with the provided Appkey and related configuration information.

    example

    Initialization example:

    RongIMLib.init({ appkey: 'appkey' });
    console.log('Initialization complete');

    Parameters

    Returns void

  • destroy(): Promise<void>
  • Uninitialize

    description

    Uninitializes the SDK, clears all listeners and timers, and stops log reporting and other services. Applicable Scenarios:

    1. Recommended for use when the application exits.
    2. When changing the appkey, call this method first, then reinitialize using the new Appkey with the init method.
    example

    Uninitialization example:

    await RongIMLib.destroy();
    console.log('Uninitialization completed');

    Returns Promise<void>

  • Get IM connection status

    example

    Example of getting IM connection status:

    const status = RongIMLib.getConnectionStatus();
    console.log('IM connection status:', status);

    Returns RCConnectionStatus

  • getCurrentUserId(): string
  • Get the ID of the connected IM user

    example

    Example of getting the current user ID:

    const userId = RongIMLib.getCurrentUserId();
    console.log('Current user ID:', userId);

    Returns string

  • getDeviceId(): string
  • Get deviceId

    description

    Retrieves the unique identifier of the current device

    example

    Example of getting deviceId:

    const deviceId = RongIMLib.getDeviceId();
    console.log('Device ID:', deviceId);

    Returns string

  • installPlugin<T, O>(plugin: IPluginGenerator<T, O>, options: O): T | null
  • Load plugin

    description

    Loads the plugin and returns the corresponding plugin instance. Must be called before invoking the connect method.

    Type Parameters

    • T

    • O

    Parameters

    • plugin: IPluginGenerator<T, O>
    • options: O

      Plugin configuration

    Returns T | null

ConnectType: { COMET: string; WEBSOCKET: string } = ...
deprecated

since version 5.6.0

Type declaration

  • COMET: string
  • WEBSOCKET: string

Chatroom

  • joinChatRoom(targetId: string, options: { count: number; extra?: string }): Promise<IAsyncRes<void>>
  • Join chatroom

    description

    Creates and joins a chatroom. If the chatroom already exists, the user will join directly.

    deprecated

    This method is deprecated starting from @since 5.8.3. Please use joinExistChatRoom instead.

    Parameters

    • targetId: string

      The ID of the chatroom

    • options: { count: number; extra?: string }

      Configuration parameters for joining the chatroom

      • count: number

        Number of messages to pull

      • Optional extra?: string

        Extended information

        since

        5.10.3

    Returns Promise<IAsyncRes<void>>

  • Join an existing chatroom

    description

    The chatroom already exists. After obtaining the chatRoomId, you can call joinExistChatRoom to join the chatroom. This method can only be used to join existing chatrooms. Note:

    1. This interface is available on the Electron platform starting from version 5.7.0
    2. Starting from version 5.8.3, the success callback's data includes chatroom information and mute status. For details, see IChatroomJoinResponse
    3. In the case of reconnection after a network disconnection, the SDK will rejoin the chatroom and pull a fixed number of messages based on the count value passed when joining the chatroom. The pulled messages may already exist locally, and the app may need to deduplicate them before displaying.
    defaultvalue

    options.count is 10

    example

    Example of joining an existing chatroom:

    const chatRoomId = 'chatroomId';
    const options = { count: 10 };
    const res = await RongIMLib.joinExistChatRoom(chatRoomId, options);
    console.log('Result of joining an existing chatroom:', res);

    Parameters

    • targetId: string

      The chatroom ID

    • options: { count: number; extra?: string }

      Configuration parameters for joining the chatroom. count specifies the number of historical messages to retrieve upon entering the chatroom. The range is 1-50. If -1 is passed, no historical messages will be retrieved. If 0 is passed, the SDK default setting will be used (default is 10 messages).

      • count: number

        Number of messages to pull

      • Optional extra?: string

        Extended information

        since

        5.10.3

    Returns Promise<IAsyncRes<IChatroomJoinResponse>>

    Returns a Promise of type IAsyncRes, where data is of type IChatroomJoinResponse

  • quitChatRoom(targetId: string): Promise<IAsyncRes<void>>
  • Exit chatroom

    description

    The client user can actively exit the chatroom. After exiting, the user will no longer receive chatroom messages.

    example

    Example of exiting a chatroom:

    const chatRoomId = 'chatroomId';
    const res = await RongIMLib.quitChatRoom(chatRoomId);
    console.log('Exit chatroom result:', res);

    Parameters

    • targetId: string

      Chatroom ID

    Returns Promise<IAsyncRes<void>>

  • getChatRoomInfo(targetId: string, options?: { count?: number; order?: 0 | 1 | 2 }): Promise<IAsyncRes<IChatroomInfo>>
  • Query chatroom information

    description

    Retrieves chatroom information, including the total number of members and a list of up to 20 chatroom members, along with their user IDs and join timestamps. Note:

    1. If either count or order is 0, only the total number of members is returned, and the member list is not included. The order parameter specifies the sorting order: 1 for ascending, 2 for descending, and 0 (default) for no sorting.
    2. A single device can call this API once per second, with a maximum of 20 calls per minute.
    example

    Example of querying chatroom information:

    const chatRoomId = 'chatroomId';
    const options = { count: 10, order: 1 };
    const res = await RongIMLib.getChatRoomInfo(chatRoomId, options);
    console.log('Chatroom information query result:', res);

    Parameters

    • targetId: string

      The chatroom ID

    • Optional options: { count?: number; order?: 0 | 1 | 2 }

      Configuration parameters for querying chatroom information

      • Optional count?: number

        Retrieves the number of users in the chatroom. The value range is 0-20, with a default value of 0.

      • Optional order?: 0 | 1 | 2

        The sorting order of chatroom members. Default is 0 (no sorting). 1: Ascending order 2: Descending order

    Returns Promise<IAsyncRes<IChatroomInfo>>

    Returns a Promise of type IAsyncRes, where data is of type IChatroomInfo

  • Set single attribute

    description

    Sets chatroom attributes, supporting Key-Value type attribute information. Limitations:

    1. Custom attributes in a chatroom will be destroyed when the chatroom is destroyed.
    2. Each chatroom allows a maximum of 100 attributes to be stored in Key-Value format.
    3. The client SDK does not limit the operation frequency of chatroom attribute Key-Value pairs. It is recommended to keep the Key-Value operation frequency below 100 times per second for each chatroom (a single operation of 100 Key-Value pairs within one second is equivalent to 100 operations).
    • Note:
    1. To use this interface, you need to enable the Chatroom Custom Attribute Settings feature. You can enable this service on the Basic Features page in the Console.
    2. The attribute can only be successfully set if it does not exist in the chatroom or if the attribute setter is the user themselves.
    example

    Example of setting a single attribute:

    const chatRoomId = 'chatroomId';
    const options = {
    key: 'key',
    value: 'value',
    };
    const res = await RongIMLib.setChatRoomEntry(chatRoomId, options);
    console.log('Result of setting a single attribute:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • Batch set attributes *

    description

    Batch sets chatroom attributes Limitations: Custom attributes in a chatroom will be destroyed when the chatroom is destroyed. Each chatroom allows a maximum of 100 attributes to be stored in Key-Value pairs. The client SDK does not limit the frequency of Key-Value operations for chatroom attributes. It is recommended to keep the Key-Value operation frequency at or below 100 times per second (a single operation of 100 KVs within one second is equivalent to 100 operations). * Note:

    1. To use this interface, you need to enable the Chatroom Custom Attributes feature. You can activate this service on the Basic Features page in the Console.
    2. Attributes can only be set successfully if the attribute does not exist in the chatroom or if the attribute setter is yourself.
    example

    Example of batch setting attributes:

    const chatRoomId = 'chatroomId';
    const options = { entries: [{ key: 'key', value: 'value' }] };
    const res = await RongIMLib.setChatRoomEntries(chatRoomId, options);
    console.log('Batch set attributes result:', res);

    Parameters

    • targetId: string

      Chatroom ID

    • options: IChatroomEntries

      Configuration parameters for setting chatroom attributes Type: IChatroomEntries @since version 5.3.4, this interface also supports forcibly setting multiple attribute values through the isForce property. Forced settings can directly overwrite attribute values created by others.

    Returns Promise<IAsyncRes<void>>

  • Force set a single attribute

    description

    Force sets a single chatroom attribute. This can be used to modify attribute values created by others, stored in the form of key = value. When the key does not exist, it represents adding an attribute; when the key already exists, it represents updating the attribute's value. Using force set allows modifying attribute values created by others.

    example

    Example of force setting a single attribute:

    const chatRoomId = 'chatroomId';
    const options = {
    key: 'key',
    value: 'value',
    };
    const res = await RongIMLib.forceSetChatRoomEntry(chatRoomId, options);
    console.log('Result of force setting a single attribute:', res);

    Parameters

    • targetId: string

      The chatroom ID

    • options: IChatroomEntry

      Configuration parameters for setting the chatroom attribute, of type IChatroomEntry

    Returns Promise<IAsyncRes<void>>

  • Delete a single attribute

    description

    Deletes a custom attribute of the chatroom. Only attributes created by the current user can be deleted.

    example

    Example of deleting a single attribute:

    const targetId = 'chatroomId';
    const options = {
    key: 'key',
    };
    const res = await RongIMLib.removeChatRoomEntry(targetId, options);
    console.log('Result of deleting a single attribute:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • removeChatRoomEntries(targetId: string, options: { entries: string[]; notificationExtra?: string }): Promise<IAsyncRes<void>>
  • Batch delete chatroom attributes

    description

    Deletes custom attributes of a chatroom. Only attributes created by the current user can be deleted.

    example

    Example of batch deleting chatroom attributes:

    const targetId = 'chatroomId';
    const options = {
    entries: ['key'],
    };
    const res = await RongIMLib.removeChatRoomEntries(targetId, options);
    console.log('Result of batch deleting chatroom attributes:', res);

    Parameters

    • targetId: string

      The ID of the chatroom

    • options: { entries: string[]; notificationExtra?: string }

      Configuration parameters for deleting chatroom attributes

      • entries: string[]
      • Optional notificationExtra?: string

    Returns Promise<IAsyncRes<void>>

  • Force delete

    description

    Forcibly deletes custom attributes of a chatroom. Can delete attributes created by others.

    example

    Example of force deletion:

    const targetId = 'chatroomId';
    const options = {
    key: 'key',
    };
    const res = await RongIMLib.forceRemoveChatRoomEntry(targetId, options);
    console.log('Force deletion result:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • getChatRoomEntry(targetId: string, key: string): Promise<IAsyncRes<string | number | boolean>>
  • Get single attribute

    description

    Retrieves a single chatroom attribute

    example

    Example of getting a single attribute:

    const targetId = 'chatroomId';
    const key = 'key';
    const res = await RongIMLib.getChatRoomEntry(targetId, key);
    console.log('Get single attribute result:', res);

    Parameters

    • targetId: string

      The chatroom ID

    • key: string

      The attribute name, supports a combination of English letters, numbers, +, =, -, _, with a maximum length of 128 characters

    Returns Promise<IAsyncRes<string | number | boolean>>

  • getAllChatRoomEntries(targetId: string): Promise<IAsyncRes<{}>>
  • Get all attributes

    description

    Retrieves all attributes of the chatroom

    example

    Example of retrieving all attributes:

    const targetId = 'chatroomId';
    const res = await RongIMLib.getAllChatRoomEntries(targetId);
    console.log('Result of retrieving all attributes:', res);

    Parameters

    • targetId: string

      The ID of the chatroom

    Returns Promise<IAsyncRes<{}>>

    Returns a Promise of type IAsyncRes, where the data is an object containing all attributes of the chatroom in the format { [key: string]: string | number | boolean }

  • Retrieve chatroom history messages

    description

    The API for retrieving chatroom history messages requires the Cloud Storage for Chatroom Messages service to be enabled. Please ensure the service is activated before use. Once enabled, chatroom history messages are stored in the cloud by default for 2 months.

    example

    Example of retrieving chatroom history messages:

    const chatRoomId = 'chatroomId';
    const options = {
    count: 10,
    order: 1,
    timestamp: 0,
    };
    const res = await RongIMLib.getChatroomHistoryMessages(chatRoomId, options);
    console.log('Retrieved chatroom history messages:', res);

    Parameters

    Returns Promise<IAsyncRes<GetHistoryMessageResult>>

    Returns a Promise of type IAsyncRes, where the data is of type GetHistoryMessageResult

  • Bind RTC room

    description

    Once the chatroom is successfully bound to the RTC room, the chatroom will not be automatically destroyed as long as the RTC room still exists. Use Case: Chatrooms have an auto-destruction mechanism. In apps that use RC's RTC service, the IM SDK's chatroom feature may be used to implement live chat, bullet comments, and attribute recording. In such cases, you can consider binding the chatroom to the RTC room to ensure the chatroom is not destroyed before the voice chat or live stream ends, preventing the loss of critical data.

    since

    5.2.1

    example

    Example of binding an RTC room:

    const option = {
    chatRoomId: 'chatroomId',
    rtcRoomId: 'rtcRoomId',
    };
    const res = await RongIMLib.bindRTCRoomForChatroom(option);
    console.log('RTC room binding result:', res);
    ```ts

    Parameters

    Returns Promise<IAsyncRes<void>>

Conversation

  • Get conversation list *

    description

    The API to get the conversation list requires enabling cloud storage for one-to-one and group messages before data can be retrieved from the server. The server-side conversation list storage limit is 1000. Note: When called on the Electron platform, parameter values are ignored, and all conversation lists are returned by default. Electron platform users are advised to consider using other APIs to retrieve the conversation list. If the limit exceeds 1000, the earliest conversations will be deleted based on the timestamp of the last message.

    defaultvalues

    count: 20, startTime: 0, order: 0 *

    example

    Example of getting the conversation list:

    const conversationList = await RongIMLib.getConversationList();
    console.info('Conversation list result:', conversationList);

    Parameters

    • Optional options: { count?: number; startTime?: number; order?: 0 | 1 }

      Configuration parameters for retrieving the conversation list

      • Optional count?: number

        Number of conversations

      • Optional startTime?: number

        Get Start Time Default value: 0 When order is 0, startTime defaults to the current time. When order is 1, startTime defaults to the earliest message time across all conversations.

      • Optional order?: 0 | 1

        Default value: 0 0: Retrieve messages before startTime 1: Retrieve messages after startTime

    • Optional channelId: string

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

    Returns a Promise of type IAsyncRes, where the data structure is an array of type IAReceivedConversation

  • Get specified conversation data

    description

    The conversation obtained through this method may not exist in the current conversation list. This is only a functional encapsulation syntactic sugar.

    example

    Example of fetching specified conversation data:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const conversation = await RongIMLib.getConversation(options);
    console.info('Fetched specified conversation data result:', conversation);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedConversation | null | undefined>>

    Returns a Promise of type IAsyncRes, where the data structure is of type IAReceivedConversation

  • Remove specified conversation

    description

    Removes the specified conversation without deleting the messages within it Note:

    1. Deleting a conversation does not clear its unread count. It is recommended to call the clearMessagesUnreadStatus interface before deleting the conversation to prevent unread count anomalies
    2. Conversations are generated by messages. If new messages are generated in the conversation, the conversation will be recreated
    example

    Example of removing a specified conversation:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const conversation = await RongIMLib.removeConversation(options);
    console.info('Result of removing the specified conversation:', conversation);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • Query Do Not Disturb for a specific conversation and channel

    deprecated

    Query the Do Not Disturb settings for a specific conversation and channel set via the setConversationNotificationLevel interface

    1. For the Electron platform, support for the setConversationNotificationLevel interface starts from version 5.8.4.
    since

    5.3.0

    example

    Example of querying Do Not Disturb for a specific conversation and channel:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const conversation = await RongIMLib.getConversationNotificationLevel(options);
    console.info('Do Not Disturb query result for the specified conversation and channel:', conversation);

    Parameters

    Returns Promise<IAsyncRes<NotificationLevel | undefined>>

  • Get Do Not Disturb Status List

    description

    Retrieves all conversations that have Do Not Disturb status enabled. This API is only supported on the Web platform.

    since

    5.1.1

    example

    Example of getting the Do Not Disturb status list:

    const list = await RongIMLib.getBlockedConversationList();
    console.info('Result of getting the Do Not Disturb status list:', list);

    Returns Promise<IAsyncRes<IBaseConversationInfo[]>>

    Returns a Promise of type IAsyncRes, where the data is an array of type IBaseConversationInfo.

  • Set whether a conversation is pinned to the top

    defaultvalue

    isUpdateTime Defaults to true

    example

    Example of setting whether a conversation is pinned to the top:

    const isTop = true
    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const res = await RongIMLib.setConversationToTop(options, isTop);
    console.info('Result of setting whether a conversation is pinned to the top:', res);

    Parameters

    • options: IConversationOption

      Conversation information

    • isTop: boolean = true

      Pin status

    • isUpdateTime: boolean = true

      Whether to update the conversation operation time, defaults to true, only effective for Electron platform in private cloud environment

    Returns Promise<IAsyncRes<void>>

  • Get Pinned Conversation List

    description

    Note: The latestMessage field will not be included in the returned data on the Web platform.

    since

    5.6.0

    example

    Example of getting the pinned conversation list:

    const res = await RongIMLib.getTopConversationList();
    console.info('Number of pinned conversations retrieved:', res);

    Parameters

    • Optional conversationTypes: ConversationType[]

      An array of ConversationType is required.

    • Optional channelId: string

      If not provided or set to undefined, all pinned conversations of the channelId type will be retrieved.

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

    Returns a Promise of type IAsyncRes, where the data is an array of IAReceivedConversation type.

  • Get Unread Conversation List

    description

    Note: The returned data on the Web platform will not include the latestMessage field.

    since

    5.7.0

    example

    Example of getting the unread conversation list:

    const res = await RongIMLib.getUnreadConversationList();
    console.info('Unread conversation list result:', res);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

    Returns a Promise of type IAsyncRes, with data being an array of type IAReceivedConversation

Conversation Unread Count

  • Get the total unread message count for all current conversations

    description
    1. Clearing browser cache may cause inaccuracies in the unread count
    2. The unread message count is stored in WebStorage. If the browser does not support or has disabled WebStorage, the unread count will not be saved, and refreshing the browser page will result in the loss of the unread count
    3. Deleting a conversation on other devices may cause inaccuracies in the unread count
    defaultvalues

    includeMuted: false

    example

    Example of getting the total unread message count for all current conversations:

    const totalUnreadCount = await RongIMLib.getTotalUnreadCount();
    console.info('Result of getting the total unread message count for all current conversations:', totalUnreadCount);

    Parameters

    • Optional includeMuted: boolean

      Indicates whether to include conversations with Do Not Disturb enabled

    • Optional conversationTypes: ConversationType[]

      Specifies the conversation types for which to retrieve the unread count. If empty, it defaults to retrieving unread counts for one-to-one chat, group chat, and system messages

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, with the unread count returned in the data field

  • Get the unread count of conversations with specified Do Not Disturb levels

    description

    Finds conversations whose Do Not Disturb configurations match the specified levels and returns the total unread message count across all conversations. Note:

    1. Chatroom conversations do not store unread counts, so retrieving unread counts for chatroom conversations is not supported.
    since

    5.5.1 Not supported on Electron platform

    example

    Example of getting the unread count of conversations with specified Do Not Disturb levels:

    const conversationTypes = [RongIMLib.ConversationType.PRIVATE];
    const levels = [RongIMLib.NotificationLevel.ALL_MESSAGE];
    const totalUnreadCount = await RongIMLib.getTotalUnreadCountByLevels(conversationTypes, levels);
    console.info('Result of getting the unread count of conversations with specified Do Not Disturb levels:', totalUnreadCount);

    Parameters

    • conversationTypes: ConversationType[]

      List of conversation types

    • levels: NotificationLevel[]

      The Do Not Disturb levels of the conversations to retrieve. Pass an empty array to count unread messages for all supported conversation types and levels.

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, with the unread count of conversations in the data field.

  • Get the total unread mention count for conversations with specified Do Not Disturb levels

    description

    Finds conversations whose Do Not Disturb configuration matches the specified levels and returns the total count of unread mentions across all conversations

    since

    5.5.1 Not supported on Electron platform

    example

    Example of getting the total unread mention count for conversations with specified Do Not Disturb levels:

    const conversationTypes = [RongIMLib.ConversationType.PRIVATE];
    const levels = [RongIMLib.NotificationLevel.ALL_MESSAGE];
    const totalUnreadCount = await RongIMLib.getTotalUnreadMentionedCountByLevels(conversationTypes, levels);
    console.info('Result of getting the total unread mention count for specified Do Not Disturb levels:', totalUnreadCount);

    Parameters

    • conversationTypes: ConversationType[]

      List of conversation types

    • levels: NotificationLevel[]

      List of Do Not Disturb levels. Pass an empty array to get the unread count for all levels

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where the data contains the total unread mention count *

  • Get the unread count of a specified conversation

    description

    Retrieves the unread count of a specified conversation. On the web, the unread count is stored in localstorage. Clearing the browser cache may result in inaccurate unread counts.

    example

    Example of getting the unread count of a specified conversation:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const unreadCount = await RongIMLib.getUnreadCount(options);
    console.info('Unread count of the specified conversation:', unreadCount);

    Parameters

    Returns Promise<IAsyncRes<number>>

  • Clear Unread Count for Specified Conversation

    description

    Clears the unread count for the specified conversation (excluding chatroom conversation types) Note:

    1. The unread count for Web sessions is stored in localstorage. Clearing the browser cache may result in inaccurate unread counts.
    2. Chatroom conversation types do not store unread counts, hence clearing unread counts for chatroom conversations is not supported.
    3. The unread count is stored locally and cannot be restored once cleared. If the user is logged in on multiple devices, the unread count will not be automatically synchronized across devices. To synchronize across devices, use the sendSyncReadStatusMessage interface.
    example

    Example of clearing the unread count for a specified conversation:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const clearRes = await RongIMLib.clearMessagesUnreadStatus(options);
    console.info('Result of clearing the unread count for the specified conversation:', clearRes);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • Clear all unread counts

    since

    5.0.2

    example

    Example of clearing all unread counts:

    const clearRes = await RongIMLib.clearAllMessagesUnreadStatus();
    console.info('Result of clearing unread counts for specified conversation:', clearRes);

    Returns Promise<IAsyncRes<ErrorCode>>

  • Get Unread Mention Count for a Single Group Conversation

    description

    Retrieves the count of unread @ mentions for the current user in a specified ultra group conversation and channel. Note: To get the unread @ mention count for a specific channel, the ultra group channel ID (channelId) must be provided.

    example

    Example of getting the unread @ mention count for a single group conversation:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const count = await RongIMLib.getUnreadMentionedCount(options);
    console.info('Unread @ mention count for a single group conversation:', count);

    Parameters

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where the data contains the unread @ mention count for a single group conversation.

  • getAllUnreadMentionedCount(): Promise<IAsyncRes<number>>
  • Get the total unread @ mention count for all group conversations

    description

    This feature is currently supported only for regular group conversations and not for ultra groups

    since

    5.9.0

    example

    Example of getting the total unread @ mention count for all group conversations:

    const count = await RongIMLib.getAllUnreadMentionedCount();
    console.info('Result of getting the total unread @ mention count:', count);

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where the data represents the total unread @ mention count for all group conversations

Draft

  • Get conversation text draft

    description

    Web drafts are saved in memory, so refreshing the browser will result in the loss of any set drafts.

    example

    Example of getting a conversation text draft:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const conversation = await RongIMLib.getTextMessageDraft(options);
    console.info('Get conversation text draft result:', conversation);

    Parameters

    Returns Promise<IAsyncRes<string>>

  • Set conversation text draft

    description

    Web drafts are stored in memory; refreshing the browser will result in the loss of any set drafts.

    example

    Example of setting a conversation text draft:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const draft = 'This is the draft content';
    const conversation = await RongIMLib.saveTextMessageDraft(options, draft);
    console.info('Result of setting conversation text draft:', conversation);

    Parameters

    Returns Promise<IAsyncRes<void>>

  • Delete conversation text draft

    example

    Example of deleting a conversation text draft:

    const options = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const conversation = await RongIMLib.clearTextMessageDraft(options);
    console.info('Result of deleting conversation text draft:', conversation);

    Parameters

    Returns Promise<IAsyncRes<void>>

Friend

  • Add friend

    since

    5.12.0

    Parameters

    • userId: string

      The user ID of the user to be added as a friend

    • directionType: BOTH
    • Optional extra: string

      Additional information. Optional, additional information sent with the friend request, with a maximum length of 128 characters.

    Returns Promise<IAsyncRes<IProcessCode>>

  • deleteFriends(userIds: string[], directionType: BOTH): Promise<IAsyncRes<void>>
  • Remove friend

    description

    Note: One-way friend removal: Only removes the friend from the operator's friend list. Two-way friend removal: Removes the friend from both parties' friend lists.

    since

    5.12.0

    Parameters

    • userIds: string[]

      List of user IDs to remove from the friend relationship. A maximum of 100 users can be removed at once.

    • directionType: BOTH

    Returns Promise<IAsyncRes<void>>

  • acceptFriendApplication(userId: string): Promise<IAsyncRes<void>>
  • Agree to add as a friend

    since

    5.12.0

    Parameters

    • userId: string

      The user ID of the user who agrees to become a friend

    Returns Promise<IAsyncRes<void>>

  • setFriendInfo(userId: string, remark?: string, extProfile?: {}): Promise<IAsyncRes<void>>
  • Set friend information

    since

    5.12.0

    Parameters

    • userId: string

      The user ID of the friend

    • remark: string = ''

      The alias for the friend. Maximum of 64 characters

    • extProfile: {} = {}

      Extended information. By default, up to 10 extended fields can be set. (Must be configured via the developer backend API before use; otherwise, the setting will fail)

      • [key: string]: string

    Returns Promise<IAsyncRes<void>>

  • Check friend relationship

    Note: Unidirectional check: Only checks if the target user is in the user ID's friend list.

    Returns the friend relationship type: 1, Not in my friend list; 2, In my friend list.

    Bidirectional check: Checks both parties' friend lists.

    Returns the friend relationship type: 1, In both parties' friend lists; 2, Not in both parties' friend lists; 3, Only in the current user's friend list; 4, Only in the target user's friend list.

    since

    5.12.0

    Parameters

    • userIds: string[]

      List of user IDs for the friend relationship check, up to 20 users at a time

    • directionType: BOTH

      Type of friend relationship to check: unidirectional, bidirectional.

    Returns Promise<IAsyncRes<IFriendRelationInfo[]>>

  • Get friend information based on user IDs

    since

    5.12.0

    Parameters

    • userIds: string[]

      List of user IDs, with a maximum of 100 friends' information retrievable at once

    Returns Promise<IAsyncRes<IFriendInfo[]>>

  • Search for friend information based on nickname This API is only supported on the Electron platform

    since

    5.12.0

    Parameters

    • name: string

      The keyword for the user's nickname. It cannot be empty and must not exceed 64 characters.

    Returns Promise<IAsyncRes<IFriendInfo[]>>

  • Set the current user's friend request permission

    since

    5.12.0

    Parameters

    • permission: FriendAddPermission

      Friend request permission. Refer to {@link IAddFriendPermission}

    Returns Promise<IAsyncRes<void>>

  • Get the current user's friend request permissions

    since

    5.12.0

    Returns Promise<IAsyncRes<FriendAddPermission>>

Friends

  • Get friend list

    description

    The count and pageToken parameters are only valid for the web platform. If count and pageToken are not provided on the web, the first page will be queried by default. *

    since

    5.12.0

    Parameters

    • directionType: BOTH
    • option: IPagingQueryOption = ...

      Pagination query parameters. Refer to IPagingQueryOption. This parameter is only valid for the web platform. The default Count is 50, and a maximum of 100 records can be queried per page.

    Returns Promise<IAsyncRes<IPagingQueryResult<IFriendInfo>>>

Group

  • Create group

    description

    To create a group on the client side, the User Profile Hosting and Allow Group Creation and Management via SDK services must be enabled. This feature is not supported if these services are not enabled. Create Group
    Note:
    Group ID (id) and group name (name) are required fields; otherwise, the API call will fail.

    since

    5.12.0

    Parameters

    • groupInfo: IGroupInfoOption

      Group information. {$link IGroupInfoOption}

    • Optional inviteeUserIds: string[]

      An array of user IDs to be added to the group. A maximum of 100 users can be added at once. (Optional)

    Returns Promise<IAsyncRes<IProcessCode>>

  • Set group information

    description

    To create a group via the client, you need to enable the User Profile Hosting and Allow SDK to Create, Set Group Information and Permissions services. This feature is not supported if these services are not enabled.

    since

    5.12.0

    Parameters

    Returns Promise<IAsyncRes<void>>

  • Batch get group information

    description

    To create a group, the client must have the User Profile Hosting feature enabled. This feature is not supported if the feature is not enabled. It supports retrieving information for all existing groups.

    since

    5.12.0

    Parameters

    • groupIds: string[]

      An array of group IDs. A single query supports up to 20 groups.

    Returns Promise<IAsyncRes<IGroupInfo[]>>

    Returns a Promise of type IAsyncRes, where the data is of type IGroupInfoOption.

  • Remove group members

    description

    Requires enabling User Profile Hosting and Allow Removing Group Members via SDK features. Otherwise, this feature is not supported.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID.

    • userIds: string[]

      An array of member IDs. Supports batch operations with a maximum of 100 members per request.

    • config: IQuitGroupConfig = ...

      Configuration for removing group members. Refer to IQuitGroupConfig.

    Returns Promise<IAsyncRes<void>>

  • Quit group

    description

    To create a group, the client must have the User Profile Hosting feature enabled. If this feature is not enabled, the functionality is not supported. After a user quits the group, the group conversation information is retained, but the user will no longer receive messages from this group. Local historical messages are not deleted.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • config: IQuitGroupConfig = ...

      Configuration for quitting the group. Refer to IQuitGroupConfig

      • Whether to remove the mute status of group members: Defaults to true
      • Whether to remove the group member whitelist: Defaults to true
      • Whether to remove the special attention group members: Defaults to true

    Returns Promise<IAsyncRes<void>>

  • dismissGroup(groupId: string): Promise<IAsyncRes<void>>
  • Dismiss group

    description

    To create a group, the client must enable the Group Information Hosting feature. This feature is not supported if not enabled. Only the group owner can dismiss the group they created. After dismissal, the group conversation information is retained, and local historical messages are not deleted.

    since

    5.12.0

    Parameters

    • groupId: string

      Group ID

    Returns Promise<IAsyncRes<void>>

  • transferGroupOwner(groupId: string, newOwnerId: string, quitGroup?: boolean, config?: IQuitGroupConfig): Promise<IAsyncRes<void>>
  • Transfer group ownership

    description

    Requires enabling User Profile Hosting and Allow Group Ownership Transfer via SDK features. Otherwise, this feature is not supported.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID.

    • newOwnerId: string

      The user ID of the new group owner after the transfer.

    • quitGroup: boolean = false

      Whether to quit the group after the transfer.

    • config: IQuitGroupConfig = ...

      Configuration for kicking out of the group. Note: This feature only takes effect when quitting the group after the transfer. This configuration parameter is only effective when quitGroup is true. Refer to IQuitGroupConfig

    Returns Promise<IAsyncRes<void>>

  • addGroupManagers(groupId: string, userIds: string[]): Promise<IAsyncRes<void>>
  • Set group administrators

    description

    Requires enabling the User Profile Hosting and Allow SDK to Manage Group Administrators features; otherwise, this feature is not supported.

    • Note: Only the group owner can set group administrators. A group can have up to 10 administrators.
    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • userIds: string[]

      An array of user IDs. Note: The user IDs must belong to group members, and a maximum of 10 administrators can be added at once.

    Returns Promise<IAsyncRes<void>>

  • removeGroupManagers(groupId: string, userIds: string[]): Promise<IAsyncRes<void>>
  • Remove group administrators

    description

    Requires enabling the User Profile Hosting and Allow SDK to Manage Group Administrators features. Otherwise, this feature is not supported.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • userIds: string[]

      An array of user IDs. Note: The user IDs must be group members, and a maximum of 10 administrators can be operated on at once.

    Returns Promise<IAsyncRes<void>>

  • Paginate to get group member information

    description

    Requires the User Profile Hosting feature to be enabled; otherwise, this feature is not supported.

    since

    5.12.0

    Parameters

    Returns Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>

    Returns a Promise of type IAsyncRes. The data contains the total number of group members and group member information, where the group member information is of type IGroupMemberInfo.

  • Get information of specified group members

    description

    Requires User Profile Hosting to be enabled; otherwise, this feature is not supported

    • Note: The current user must be in the group; otherwise, group member information cannot be retrieved
    since

    5.12.0

    Parameters

    • groupId: string

      Group ID

    • userIds: string[]

      Array of user IDs, with a maximum of 100 users

    Returns Promise<IAsyncRes<IGroupMemberInfo[]>>

    Returns a Promise of type IAsyncRes, where the data is of type IGroupMemberInfo

  • setGroupMemberInfo(groupId: string, userId: string, nickname: string, extra?: string): Promise<IAsyncRes<void>>
  • Set group member profile

    description

    This feature requires the User Profile Hosting feature to be enabled; otherwise, it is not supported.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID.

    • userId: string

      The user ID of the group member.

    • nickname: string

      The nickname of the group member. The length should not exceed 64 characters, and the nickname cannot be purely spaces.

    • Optional extra: string

      Additional information for the group member. The length should not exceed 128 characters.

    Returns Promise<IAsyncRes<void>>

  • Search group member information by nickname

    description

    Requires the User Profile Hosting feature to be enabled; otherwise, this feature is not supported. The Web platform does not currently support this feature.

    • Note: If the current user is not in the group, fetching group member information is not supported.
    since

    5.12.0

    Parameters

    • groupId: string

      The group ID.

    • name: string

      The keyword for searching group member nicknames. Note: Cannot be empty and must not exceed 64 characters; supports fuzzy search; if the nickname is empty, it defaults to searching by username. The search field cannot contain only spaces.

    • option: IPagingQueryOption

      Pagination query parameters. Refer to IPagingQueryOption. A maximum of 200 records can be queried per page.

    Returns Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>

    Returns a Promise of type IAsyncRes, where the data is of type IGroupMemberInfo.

  • Join group

    description

    To create a group, the client must enable the Group Information Hosting and Allow Joining Groups via SDK features. This functionality is not supported if these features are not enabled.

    • Note: The method of joining a group varies depending on the group's join permissions:
    • No verification required: Join the group directly.
    • Group owner verification (default): Send a status notification to the group owner. The user joins the group once the owner approves the request. Multiple requests can be sent if not approved.
    • The system message for joining the group includes the request information, which users can choose to add.
    • Group administrators and owner: Send a group system message to all administrators and the owner requesting to join the group. The user joins the group once an administrator or the owner approves the request. Multiple requests can be sent if not approved.
    • The system message for joining the group includes the request information, which users can choose to add.
    • No one is allowed to join: Unable to join the group, and a status prompt is returned.
    since

    5.12.0

    Parameters

    • groupId: string

      Group ID

    Returns Promise<IAsyncRes<IProcessCode>>

  • Invite users to join a group

    description

    The client needs to enable the User Profile Hosting feature to create a group. This feature is not supported if the feature is not enabled. Users can be directly added to the group through an invitation without requiring approval from the group owner or administrator.

    since

    5.12.0

    Parameters

    • groupId: string

      Group ID

    • userIds: string[]

    Returns Promise<IAsyncRes<IProcessCode>>

  • acceptGroupInvite(groupId: string, inviterId: string): Promise<IAsyncRes<void>>
  • User agrees to join a group

    description

    The client needs to enable the User Profile Hosting feature to create a group. This feature is not supported if the feature is not enabled.

    since

    5.12.0

    Parameters

    • groupId: string

      Group ID

    • inviterId: string

      The user ID of the inviter

    Returns Promise<IAsyncRes<void>>

  • refuseGroupInvite(groupId: string, inviterId: string, reason?: string): Promise<IAsyncRes<void>>
  • User rejects group invitation

    description

    The client requires the User Profile Hosting feature to create a group. This feature is not supported if the feature is not enabled.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • inviterId: string
    • Optional reason: string

      Optional reason for rejection, with a maximum of 128 characters.

    Returns Promise<IAsyncRes<void>>

  • acceptGroupApplication(groupId: string, applicantId: string, inviterId?: string): Promise<IAsyncRes<IProcessCode>>
  • Group owner or administrator approves user to join the group

    description

    The client must enable the User Profile Hosting feature to create a group. This feature is not supported if the feature is not enabled. After receiving a user's request to join the group, the group owner or administrator can approve the user to join the group.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • applicantId: string

      The ID of the user requesting to join the group

    • Optional inviterId: string

      The inviter ID. Optional. If the user is invited to join the group, provide the inviter ID; if the user actively requests to join, this can be left empty.

    Returns Promise<IAsyncRes<IProcessCode>>

  • refuseGroupApplication(groupId: string, applicantId: string, inviterId?: string, reason?: string): Promise<IAsyncRes<void>>
  • Group owner or administrator rejects user's request to join the group

    description

    The client must enable the Group Information Hosting feature to create a group. This feature is not supported if the feature is not enabled. The group owner or administrator rejects the user's request to join the group after receiving the application.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • applicantId: string

      The user ID of the applicant

    • Optional inviterId: string

      The inviter ID. Optional. If the user is invited to join the group, pass the inviter ID; if the user applies to join the group actively, this field can be empty.

    • Optional reason: string

      The remark content. When rejecting, you can choose whether to input a reason for rejection. The content should not exceed 128 characters.

    Returns Promise<IAsyncRes<void>>

  • Get group requests

    description

    To create a group, the client must have the User Profile Hosting feature enabled. This functionality is not supported if the feature is not enabled. Administrators can view group operation requests related to themselves.
    Includes: User requests to join a group, invited users rejecting group invitations, and inviting users to join a specific group.

    since

    5.12.0

    Parameters

    • option: IPagingQueryOption

      Pagination parameters. Refer to IPagingQueryOption. A maximum of 200 records can be queried per page.

    • Optional directions: GroupApplicationDirection[]

      Array of group request directions. Refer to GroupApplicationDirection. This parameter is only supported in Electron and is mandatory for Electron. Passing this parameter in Web is invalid.

    • Optional status: GroupApplicationStatus[]

      Array of group request statuses. This parameter is only supported in Electron and is mandatory for Electron. Passing this parameter in Web is invalid.

    Returns Promise<IAsyncRes<IPagingQueryResult<IGroupApplicationInfo>>>

    Returns a Promise of type IAsyncRes, where the data contains an array of type IGroupApplicationInfo.

  • Search for groups I have joined by group name

    description

    Client-side group creation requires the User Profile Hosting feature to be enabled. This feature is not supported if the feature is not enabled. The Web platform currently does not support this feature.

    since

    5.12.0

    Parameters

    • groupName: string

      The search keyword for the group name. Cannot be empty and must not exceed 64 characters. Supports fuzzy search. Trim leading and trailing spaces before querying.

    • option: IPagingQueryOption

      Pagination query parameters. Refer to IPagingQueryOption. A maximum of 200 records can be queried per page.

    Returns Promise<IAsyncRes<IPagingQueryResult<IGroupInfo>>>

    Returns a Promise of type IAsyncRes, with data of type {@link void}.

  • Batch get group information

    description

    To create a group, the client must have the Group Information Hosting feature enabled. This feature is not supported if the feature is not enabled. Supports retrieving information for all existing groups.

    since

    5.12.0

    Parameters

    • groupIds: string[]

      Array of group IDs, with a maximum of 20 groups per query

    Returns Promise<IAsyncRes<IGroupInfo[]>>

  • setGroupRemark(groupId: string, remark: string): Promise<IAsyncRes<void>>
  • Set group name

    description

    The client must enable the User Profile Hosting feature to create a group. This feature is not supported if the feature is not enabled.

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • remark: string

      The alias name. Setting it to '' means removing the alias. The string length should not exceed 64 characters. If the group alias already exists, it will be replaced, with the last setting taking precedence.

    Returns Promise<IAsyncRes<void>>

  • addGroupFollows(groupId: string, userIds: string[]): Promise<IAsyncRes<void>>
  • Set group member follow

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID

    • userIds: string[]

      An array of user IDs. You can follow up to 100 users at a time.

    Returns Promise<IAsyncRes<void>>

  • removeGroupFollows(groupId: string, userIds: string[]): Promise<IAsyncRes<void>>
  • Remove group member follow

    since

    5.12.0

    Parameters

    • groupId: string

      Group ID

    • userIds: string[]

      Array of user IDs, up to 100 users can be unfollowed at once

    Returns Promise<IAsyncRes<void>>

  • Get group members I follow

    since

    5.12.0

    Parameters

    • groupId: string

      The group ID, only supports regular groups.

    Returns Promise<IAsyncRes<IFollowsInfo[]>>

Interface

IAsyncRes<T>: Pick<RCResult<T>, "code" | "data"> & { msg?: string }

Asynchronous task result

Type Parameters

  • T = void

Message

  • Send message

    description

    The basic interface for sending messages, which can be used to send built-in message types or custom messages in IMLib. For different specific message types

    example

    Example of sending a text message:

    const content = {content: 'hello world'};
    const message = new RongIMLib.TextMessage(content);
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId'
    }
    const sendRes = await RongIMLib.sendMessage(conversation, message);
    console.info('Message sending result:', sendRes);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • message: BaseMessage<any>

      The message body, which is a subclass of BaseMessage, such as TextMessage, ImageMessage, obtained via new TextMessage()

    • Optional options: ISendMessageOptions

      Configuration options for sending messages

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    Returns a Promise of type IAsyncRes, with the data structure being IAReceivedMessage

  • Send text message

    description

    A shortcut for sending text messages, equivalent to creating a message body using new TextMessage() and then calling the sendMessage() method.

    example

    Example of sending a text message:

    const messageBody = {content: 'hello world'};
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId'
    }
    const sendRes = await RongIMLib.sendTextMessage(conversation, messageBody);
    console.info('Message sending result:', sendRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    Returns a Promise of type IAsyncRes, with the data structure of type IAReceivedMessage

  • Get history messages

    description

    Retrieves historical messages with pagination support. You can specify parameters such as timestamp, count, and sorting order for pagination.

    1. The maximum value for count is 100. Exceeding this limit will return error code 34232: Invalid count parameter passed by the developer interface.
    2. If SDK < 5.7.4, the range is [1-20]; if SDK ≧ 5.7.4, the range is [1-100]. The default value is 20. Note:
    3. Electron retrieves data from the local database.
    4. Web retrieves remote historical messages. The Web platform does not support persistent data storage, so it cannot locally store historical message records and conversation lists. Therefore, data must be fetched from the RC server.
    5. Ensure that the Cloud Storage for One-to-One and Group Messages service is enabled. If not enabled, please go to the IM Service Management module in the RC Developer Console to activate it.
    defaultvalue

    options = { timestamp: 0, count: 20, order: 0 }

    example

    Example of retrieving historical messages:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const messages = await RongIMLib.getHistoryMessages(conversation);
    console.info('Retrieved historical messages:', messages);

    Parameters

    Returns Promise<IAsyncRes<GetHistoryMessageResult>>

    Returns a Promise of type IAsyncRes, where the data structure is of type GetHistoryMessageResult *

  • Retrieve remote history messages

    description

    Retrieves remote history messages with pagination support. You can specify parameters such as timestamp, count, and sorting order for paginated retrieval.

    1. The maximum value for Count is 100. Exceeding this limit will return error code 34232: Invalid count parameter passed by the developer.
    2. If SDK < 5.7.4, the range is [1-20]; if SDK ≧ 5.7.4, the range is [1-100]. Default value is 20. Note: You must enable the Cloud Storage for One-to-One and Group Messages service before you can pull history messages from the remote server. This service can be enabled in the IM Service Management module of the RC Developer Console.
    defaultvalue

    options = { timestamp: 0, count: 20, order: 0 }

    example

    Example of retrieving remote history messages:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const messages = await RongIMLib.getRemoteHistoryMessages(conversation);
    console.info('Remote history messages retrieved:', messages);

    Parameters

    Returns Promise<IAsyncRes<GetHistoryMessageResult>>

    Returns a Promise of type IAsyncRes, with the data structure being GetHistoryMessageResult

  • sendReadReceiptMessage(targetId: string, messageUId: string, timestamp: number, channelId?: string): Promise<IAsyncRes<void>>
  • Send one-to-one chat read receipt

    description

    Sends a read receipt for a one-to-one chat to mark messages as read. Steps to Implement Read Functionality:

    1. After the user views unread messages in a one-to-one chat session, call sendReadReceiptMessage to send a read receipt.
    2. Set up a message receipt listener using addEventListener.
    3. The SDK dispatches the READ_RECEIPT_RECEIVED event when a read receipt is received.
    • Notes:
    1. On the Web platform, the SDK does not track the read status of each conversation and message. You need to record the read time of each conversation in localStorage. When rendering the message list, determine whether a message is read based on the time in localStorage and update the corresponding message UI.
    2. On the Electron platform, when receiving the READ_RECEIPT_RECEIVED notification, you need to call the <a href="modules/electronExtension.html#setMessageStatusToRead">electronExtension.setMessageStatusToRead</a> method to update the message read status and refresh the corresponding message UI.
    3. Calling the sendReadReceiptMessage interface does not clear the unread count. You need to separately call the unread count clearing interface <a href="modules.html#clearMessagesUnreadStatus">clearMessagesUnreadStatus</a>.
    example

    Example of sending a read receipt for a one-to-one chat:

    const targetId = 'targetId';
    const messageUId = 'BS4O-QEBR-VJM6-9GPP';
    const timestamp = 1632728573423;

    const readReceiptRes = await RongIMLib.sendReadReceiptMessage(targetId, messageUId, timestamp);
    console.info('One-to-one chat read receipt:', readReceiptRes);

    Parameters

    • targetId: string

      Target ID

    • messageUId: string

      Unique identifier of the message, which can be obtained from the Message object

    • timestamp: number

      The sending time of the message, which can be obtained from the sendTime field in the Message object

    • Optional channelId: string

    Returns Promise<IAsyncRes<void>>

  • sendReadReceiptRequest(targetId: string, messageUId: string, channelId?: string): Promise<IAsyncRes<void>>
  • Send group read receipt request

    description

    Implements the request for obtaining the read status of messages sent by oneself in a group chat on demand. This interface is used in conjunction with the group chat read receipt response interface sendReadReceiptResponseV2. Calling this interface alone does not enable group receipt functionality. *

    example

    Group read receipt request example:

    const targetId = 'targetId';
    const messageUId = 'BS4O-QEBR-VJM6-9GPP';
    const readReceiptRes = await RongIMLib.sendReadReceiptRequest(targetId, messageUId);
    console.info('Group read receipt request:', readReceiptRes)

    Parameters

    • targetId: string

      Target ID

    • messageUId: string
    • Optional channelId: string

    Returns Promise<IAsyncRes<void>>

  • sendReadReceiptResponse(targetId: string, messageUIds: string[], channelId?: string): Promise<IAsyncRes<void>>
  • deprecated

    since version 5.1.1. Please use sendReadReceiptResponseV2 instead.

    Parameters

    • targetId: string
    • messageUIds: string[]
    • Optional channelId: string

    Returns Promise<IAsyncRes<void>>

  • sendReadReceiptResponseV2(targetId: string, messageList?: {}, channelId?: string): Promise<IAsyncRes<void>>
  • Send group read receipt response v2

    description

    Implements the response for fetching the read status of messages sent by the user in a group chat on demand. This is used in conjunction with the group chat read receipt request interface sendReadReceiptRequest. Calling this method alone will not enable the group receipt functionality. Note: After version 5.9.4, the SDK internally maintains the read receipt request information and includes the read receipt information (readReceiptInfo) in the historical message list. Differences between the Web and Electron platforms:

    1. On the Web platform, the SDK caches the latest 30 read receipt information for each group conversation (based on the send time of the read receipt request), with a cache validity period of 24 hours. When sending the message receipt response, there is no need to pass the messageList field. The SDK will organize all requests under the conversation and send the response.
    2. On the Electron platform, users need to first retrieve historical messages, extract messages where message.messageDirection = MessageDirection.RECEIVE, readReceiptInfo.isReceiptRequestMessage = true, and readReceiptInfo.hasRespond = false, and then organize them into the messageList parameter to send the receipt response.
    since

    5.1.1

    example

    Example of group read receipt response:

    const targetId = 'targetId';
    const messageList = {
    'senderUserId': ['messageUId1', 'messageUId2'],
    }
    const readReceiptRes = await RongIMLib.sendReadReceiptResponseV2(targetId, messageList);
    console.info('Group read receipt response:', readReceiptRes);

    Parameters

    • targetId: string

      Group ID

    • Optional messageList: {}

      The list of messages to acknowledge, structured as: \{senderUserId: [messageUId1, messageUId2]\}

      • [senderUserId: string]: string[]
    • Optional channelId: string

    Returns Promise<IAsyncRes<void>>

  • Recall message

    description

    RC does not impose restrictions on who can recall messages. To prevent users from recalling messages sent by others, you can submit a ticket to enable the IMLib SDK to only allow recalling messages sent by the user themselves. RC's server will then enforce this restriction, preventing users from recalling messages not sent by them.

    example

    Example of recalling a message:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const options = {
    messageUId: 'messageUId',
    sentTime: 1632728573423,
    }
    const recallRes = await RongIMLib.recallMessage(conversation, options);
    console.info('Recall message result:', recallRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    Returns a Promise of type IAsyncRes, where the data structure is of type IAReceivedMessage

  • Delete messages by timestamp

    description

    Deletes all messages in the specified conversation that are older than or equal to the specified timestamp.

    example

    Example of deleting messages by timestamp:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const timestamp = 1632728573423;
    const clearRes = await RongIMLib.clearHistoryMessages(conversation, timestamp);
    console.info('Message clearance result:', clearRes);

    Parameters

    • conversation: IConversationOption

      The conversation

    • timestamp: number

      The cutoff time; messages before this time will be cleared *

    Returns Promise<IAsyncRes<void>>

  • Send typing status message

    description

    Sends a typing status message to indicate that the user is currently typing.

    example

    Example of sending a typing status message:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const typingContentType = RongIMLib.MessageType.TEXT;
    const typingRes = await RongIMLib.sendTypingStatusMessage(conversation, typingContentType);
    console.info('Typing message sent:', typingRes);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • typingContentType: string

      Typing status message type

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    Returns a Promise of type IAsyncRes, with data structured as IAReceivedMessage *

  • Get group read list

    example
    const messageUId = 'messageUId';
    const targetId = 'targetId';
    const getReaderRes = await RongIMLib.getMessageReader(targetId, messageUId);
    console.info('Get group read list result:', getReaderRes);

    Parameters

    • targetId: string

      Group ID

    • messageUId: string

      Message UID

    • Optional channelId: string

    Returns Promise<IAsyncRes<IMessageReaderResponse>>

    Returns a Promise of type IAsyncRes, where the data structure is of type IMessageReaderResponse

  • Get the first unread message

    description

    Retrieves the first unread message in the specified conversation. This feature is only supported on the Electron platform.

    example

    Example of getting the first unread message:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const firstUnreadRes = await RongIMLib.getFirstUnreadMessage(conversation);
    console.info('Result of getting the first unread message:', firstUnreadRes);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage | null>>

    Returns a Promise of type IAsyncRes, where the data structure is of type IAReceivedMessage.

  • Get the first unread message information

    since

    5.9.0

    description

    Retrieves the first unread message information in the specified conversation Note:

    1. When there are no unread messages, the returned data is null
    2. When the first unread message is recalled, this information will not be updated
    example

    Example of getting the first unread message information:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const firstUnreadMessageInfoRes = await RongIMLib.getFirstUnreadMessageInfo(conversation);
    console.info('Result of getting the first unread message information:', firstUnreadMessageInfoRes);

    Parameters

    Returns Promise<IAsyncRes<IFirstUnreadMessageInfo | null>>

    Returns a Promise of type IAsyncRes, where the data structure is of type IFirstUnreadMessageInfo

  • Get message

    description

    Retrieves a local message by its local message ID or messageUId. Supported only on the Electron platform.

    example

    Example of getting a message:

    const messageUId = 'BS4O-P5AO-D1O6-9GPP';
    const getMessageRes = await RongIMLib.getMessage(messageUId);
    console.info('Message retrieval result:', getMessageRes);

    Parameters

    • messageId: string | number

      The local message ID or messageUId

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    Returns a Promise of type IAsyncRes, where the data structure is of type IAReceivedMessage

  • Get all unread @ messages in a conversation

    example

    Example of getting all unread @ messages in a conversation:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const getUnreadMentionedRes = await RongIMLib.getUnreadMentionedMessages(conversation);
    console.info('Result of getting all unread @ messages:', getUnreadMentionedRes);

    Parameters

    Returns IAsyncRes<IAReceivedMessage[]>

    Returns a Promise of type IAsyncRes, where the data structure is of type {@link IAReceivedMessage[]}

  • Deletes message data before a specified timestamp from the local message database for a specific conversation

    deprecated

    This method is deprecated since version 5.4.0. Please use electronExtension.deleteMessagesByTimestamp instead.

    Parameters

    Returns Promise<IAsyncRes<void>>

  • Clear unread count before timestamp

    description

    Clears the unread count before the specified timestamp. This feature is only supported on the Electron platform.

    example

    Example of clearing unread count before timestamp:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }
    const timestamp = 1626955200000;
    const clearRes = await RongIMLib.clearUnreadCountByTimestamp(conversation, timestamp);
    console.info('Result of clearing unread count before timestamp:', clearRes);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • timestamp: number

      Timestamp for clearing unread count *

    Returns Promise<IAsyncRes<void>>

  • setMessageReceivedStatus(messageId: number, receivedStatus: number): Promise<IAsyncRes<void>>
MessageType: { TEXT: string; VOICE: string; HQ_VOICE: string; IMAGE: string; GIF: string; RICH_CONTENT: string; LOCATION: string; FILE: string; SIGHT: string; COMBINE: string; COMBINE_V2: string; CHRM_KV_NOTIFY: string; LOG_COMMAND: string; EXPANSION_NOTIFY: string; REFERENCE: string; RECALL_MESSAGE_TYPE: string } = ...

Message type

Type declaration

  • TEXT: string
  • VOICE: string
  • HQ_VOICE: string
  • IMAGE: string
  • GIF: string
  • RICH_CONTENT: string
  • LOCATION: string
  • FILE: string
  • SIGHT: string
  • COMBINE: string
  • COMBINE_V2: string
  • CHRM_KV_NOTIFY: string
  • LOG_COMMAND: string
  • EXPANSION_NOTIFY: string
  • REFERENCE: string
  • RECALL_MESSAGE_TYPE: string

Message Template

Short video message

Subscription user status

  • Unsubscribe user status

    description

    This method is used to unsubscribe from user status events that have been subscribed to.

    since

    5.9.8

    example

    Example of unsubscribing user status:

    const userIds = ['user1', 'user2'];
    const subscribeType = RongIMLib.SubscribeType.ONLINE_STATUS;
    const res = await RongIMLib.unSubscribeUserStatus(userIds, subscribeType);
    console.log('Unsubscribe user status result:', res);

    Parameters

    • userIds: string[]

      List of subscribed user IDs, with a maximum of 200 users per request

    • subscribeType: SubscribeType

      Subscription type, available in SubscribeType

    Returns Promise<IAsyncRes<void>>

  • Paginate and query the status information of subscribed users

    description

    This method is used to retrieve the status information of all currently subscribed events (only supports online status type)

    since

    5.9.8

    example

    Example of paginating and querying the status information of subscribed users:

    const pageSize = 10;
    const offset = 0;
    const subscribeType = RongIMLib.SubscribeType.ONLINE_STATUS;
    const res = await RongIMLib.getSubscribeUserList(subscribeType, pageSize, offset);
    console.log('Result of paginating and querying the status information of subscribed users:', res);

    Parameters

    • subscribeType: SubscribeType
    • pageSize: number

      The number of items per page

    • offset: number

      The pagination offset

    Returns Promise<IAsyncRes<ISubscribeUserStatusInfo[]>>

    Returns a Promise of type IAsyncRes, where data is an array of type ISubscribeUserStatusInfo

  • Query subscription status information

    description

    Queries the status information of specified users and subscription types. A maximum of 200 users' status information can be queried at once.

    since

    5.9.8

    example

    Example of querying subscription status information:

    const userIds = ['user1', 'user2'];
    const subscribeType = RongIMLib.SubscribeType.ONLINE_STATUS;
    const res = await RongIMLib.getSubscribeUserStatus(subscribeType, userIds);
    console.log('Query subscription status information result:', res);

    Parameters

    • subscribeType: SubscribeType
    • userIds: string[]

      List of subscribed user IDs. The list cannot be empty, and a maximum of 200 users' status information can be queried at once.

    Returns Promise<IAsyncRes<ISubscribeUserStatusInfo[]>>

    Returns a Promise of type IAsyncRes, where the data is an array of type ISubscribeUserStatusInfo.

Tag

  • Create tag

    description

    Creates a tag system for managing conversations. Tags created by the SDK are synchronized to the server. The SDK supports using one or more tags to mark conversations, which can be used for grouping conversations, retrieving conversation lists, and other operations. It also provides multiple interfaces for removing tags from conversations. Note: Each user can create up to 20 tags.

    example

    Example of creating a tag:

    const tag = {
    tagId: 'tagId',
    tagName: 'tagName',
    };
    const res = await RongIMLib.addTag(tag);
    console.log('Tag creation result:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

    Returns a code of 0 upon successful creation, or an error code on failure.

  • removeTag(tagId: string): Promise<IAsyncRes<void>>
  • Delete tag

    example

    Example of deleting a tag:

    const tagId = 'tagId';
    const res = await RongIMLib.removeTag(tagId);
    console.log('Delete tag result:', res);

    Parameters

    • tagId: string

      Tag ID

    Returns Promise<IAsyncRes<void>>

    Returns code 0 on success, or an error code on failure

  • Edit tag

    description

    Edit the tag name. The maximum length of the tag name is 15 characters. The tag ID cannot exceed 10 characters.

    example

    Example of editing a tag:

    const tag = {
    tagId: 'tagId',
    tagName: 'tagName',
    };
    const res = await RongIMLib.updateTag(tag);
    console.log('Edit tag result:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

    Returns code 0 on success, or an error code on failure.

  • Get tag list

    description

    Retrieves the tag list of the current user

    example

    Example of getting the tag list:

    const res = await RongIMLib.getTags();
    console.log('Tag list result:', res);

    Returns Promise<IAsyncRes<ITagInfo[] | undefined>>

    Returns a Promise of type IAsyncRes, where the data is the tag list of type ITagInfo array or undefined

  • Add conversations to a specified tag

    description

    Adds conversations to a specified tag. A conversation can be added to multiple tags. Note:

    1. Each tag can contain up to 1000 conversations.
    2. If a tag already contains 1000 conversations, adding more conversations to this tag will still succeed, but the earliest added conversation will be removed from the tag.
    3. The same conversation can be assigned to multiple different tags.
    example

    Example of adding conversations to a specified tag:

    const tagId = 'tagId';
    const conversations = [{
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }];
    const res = await RongIMLib.addConversationsToTag(tagId, conversations);
    console.log('Result of adding conversations to the specified tag:', res);

    Parameters

    • tagId: string

      The tag ID

    • conversations: IConversationOption[]

      The conversation information, including the conversation type, conversation ID, and channelId. The type is an array of IConversationOption.

    Returns Promise<IAsyncRes<void>>

  • Remove multiple conversations from a specified tag

    description

    Removes multiple conversations from a specified tag. This operation only disassociates the conversations from the tag and does not delete the conversation data.

    example

    Example of removing multiple conversations from a specified tag:

    const tagId = 'tagId';
    const conversations = [{
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }];
    const res = await RongIMLib.removeConversationsFromTag(tagId, conversations);
    console.log('Result of removing multiple conversations from a specified tag:', res);

    Parameters

    • tagId: string

      The tag ID

    • conversations: IConversationOption[]

      The conversation information, including the conversation type, conversation ID, and channelId, in the form of an array of IConversationOption

    Returns Promise<IAsyncRes<void>>

  • Remove multiple tags from a specified conversation

    description

    Removes multiple tags from a specified conversation. This operation only disassociates the tags from the conversation and does not delete the conversation data.

    example

    Example of removing multiple tags from a specified conversation:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    };
    const tagIds = ['tagId1', 'tagId2'];
    const res = await RongIMLib.removeTagsFromConversation(conversation, tagIds);
    console.log('Result of removing multiple tags from a specified conversation:', res);

    Parameters

    • conversation: IConversationOption

      Conversation information, including conversation type, conversation ID, and channelId, of type IConversationOption

    • tagIds: string[]

      List of tags to be removed

    Returns Promise<IAsyncRes<void>>

  • Remove specified tag from multiple conversations

    description

    Removes the specified tag from multiple conversations. This operation only disassociates the tag from the conversations and does not delete the conversation data.

    example

    Example of removing a specified tag from multiple conversations:

    const tagId = 'tagId';
    const conversations = [{
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    }];
    const res = await RongIMLib.removeTagFromConversations(tagId, conversations);
    console.log('Removed specified tag from multiple conversations:', res);

    Parameters

    • tagId: string

      The ID of the tag

    • conversations: IConversationOption[]

      List of conversation information

    Returns Promise<IAsyncRes<void>>

  • Paginate conversations under a tag

    example

    Example of paginating conversations under a tag:

    const tagId = 'tagId';
    const count = 10;
    const timestamp = 0;
    const res = await RongIMLib.getConversationsFromTagByPage(tagId, count, timestamp);
    console.log('Result of paginating conversations under a tag:', res);

    Parameters

    • tagId: string

      The ID of the tag

    • count: number

      The number of conversations to retrieve

    • startTime: number

    Returns Promise<IAsyncRes<IAReceivedConversationByTag[] | undefined>>

    Returns a Promise of type IAsyncRes, where the data is an array of conversations of type IAReceivedConversationByTag or undefined Starting from SDK version @since 5.7.0, the return data type of this interface has changed from IReceivedConversationByTag to IAReceivedConversationByTag

  • getUnreadCountByTag(tagId: string, containMuted: boolean): Promise<IAsyncRes<number | undefined>>
  • Get the unread message count by tag

    example

    Example of getting the unread message count by tag:

    const tagId = 'tagId';
    const containMuted = false;
    const res = await RongIMLib.getUnreadCountByTag(tagId, containMuted);
    console.log('Result of getting the unread message count by tag:', res);

    Parameters

    • tagId: string

      The ID of the tag

    • containMuted: boolean

      Indicates whether to include muted conversations

    Returns Promise<IAsyncRes<number | undefined>>

  • Set conversation top in tag

    description

    Sets a conversation to be pinned under a specified tag. When retrieving conversations by tag, this property will be visible in the retrieved conversations. Note that this is distinct from pinning conversations in the conversation list.

    example

    Example of setting a conversation to be pinned in a tag:

    const tagId = 'tagId';
    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    };
    const isTop = true;
    const res = await RongIMLib.setConversationToTopInTag(tagId, conversation, isTop);
    console.log('Result of setting conversation to top in tag:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

Tags

  • Get tags for a conversation

    description

    Retrieves the list of tags for a specific conversation based on conversation information

    example

    Example of getting tags for a conversation:

    const conversation = {
    conversationType: RongIMLib.ConversationType.PRIVATE,
    targetId: 'targetId',
    };
    const res = await RongIMLib.getTagsFromConversation(conversation);
    console.log('Result of getting tags for a conversation:', res);

    Parameters

    Returns Promise<IAsyncRes<IConversationTag[] | undefined>>

    Returns a Promise of type IAsyncRes, where the data is an array of tags of type IConversationTag or undefined

Type

Chatroom rejoin information

IPromiseResult<T>: Promise<IAsyncRes<T>>

Asynchronous task result

description

Handles expected exceptions through Promise.resolve, thereby exposing unexpected exceptions through Uncatch Promise Error

Type Parameters

  • T = void

IRemoveChatRoomEntries: IRemoveChatroomEntries

This definition is deprecated. Use IRemoveChatroomEntries instead.

deprecated
IChatRoomEntries: IChatroomEntries

This definition is deprecated. Please use IChatroomEntries instead.

deprecated
IRemoveChatRoomEntry: IRemoveChatroomEntry

This definition is deprecated. Please use IRemoveChatroomEntry instead.

deprecated
ISendBody: IUserInfo & IExtraData & { file: File } & IMentionedInfo & IAuditInfo

Basic message types

ISendFileMessageOptions: ISendBody

File message sending configuration

ISendImageMessageOptions: ISendBody

Image message sending configuration

ISendSightMessageOptions: { duration: number; thumbnail: string; name?: string } & ISendBody

Configuration options for sending short video messages

MessageConstructor<T>: (new (content: T) => BaseMessage<T>)

Type Parameters

  • T

Type declaration

MentionedInfo: { type?: 1 | 2; userIdList?: string[] }

@ Type

Type declaration

  • Optional type?: 1 | 2

    @ type, where 1 indicates @ all members, and 2 indicates @ specific members

  • Optional userIdList?: string[]

    List of user IDs that are mentioned. This is only valid when type is 2.

IInitOption: { appkey: string; logLevel?: LogLevel; logOutputLevel?: EnableLogL; logStdout?: any; navigators?: string[]; connectType?: "websocket" | "comet"; customCMP?: string[]; indexDBSwitch?: boolean; checkCA?: boolean; uploadDomain?: string; httpInMainProcess?: boolean; logExpireTime?: number; areaCode?: AreaCode; logServerUrl?: string; environment?: string }

Initialization configuration

Type declaration

  • appkey: string

    Application AppKey identifier

  • Optional logLevel?: LogLevel

    This configuration is deprecated. Please use logOutputLevel instead.

    deprecated

    Specifies the internal SDK log level, which defaults to LogLevel.WARN.

  • Optional logOutputLevel?: EnableLogL

    Modify the internal log printing level, which defaults to LogL.WARN and above.

  • logStdout?:function
    • logStdout(logLevel: LogLevel, content: string): void
    • deprecated
      • Configuration is deprecated

      Parameters

      Returns void

  • Optional navigators?: string[]

    Custom navigation address, not recommended for public cloud users to modify.

  • Optional connectType?: "websocket" | "comet"

    Connection method, defaults to 'websocket'.

    deprecated

    Starting from version 5.6.0, Comet connection is no longer supported, and this configuration is invalid.

  • Optional customCMP?: string[]

    Mini Program platform exclusive configuration

  • Optional indexDBSwitch?: boolean
    deprecated

    Indicates whether to enable IndexDB storage. Defaults to true.

  • Optional checkCA?: boolean
    deprecated

    Deprecated. By default, the CA issue of the navigation service is no longer verified on the Electron platform.

  • Optional uploadDomain?: string

    Qiniu upload file address domain (supported only by RCX service in Dedicated Cloud)

  • Optional httpInMainProcess?: boolean

    开启后,SDK 内的 HTTP 请求将由 Electron 主进程内发送。

    since

    5.6.0

    description

    仅在 Electron 环境中搭配 @rongcloud/electron-renderer@rongcloud/electron 包时有效。 当值为 true 时,HTTP 请求由 Electron 主进程内发送,不受浏览器安全沙箱策略限制。 当值为 false 时,保持使用 Chromium 的 XMLHttpRequest 发送 HTTP 协议请求, 请求由渲染进程内发出,受浏览器安全沙箱策略限制。

    defautl

    false

  • Optional logExpireTime?: number

    The log validity period in the IndexDB database, measured in hours, with valid values ranging from 24 to 168. By default, the log data in IndexDB is valid for 168 hours.

  • Optional areaCode?: AreaCode

    Area code

    since

    5.7.9

  • Optional logServerUrl?: string

    Log reporting service address

    since

    5.7.7

  • Optional environment?: string

    Private cloud environment configuration

GetHistoryMessageOption: { timestamp?: number; count?: number; order?: 0 | 1 }

Retrieve historical message configuration

Type declaration

  • Optional timestamp?: number

    Retrieve messages before this timestamp. Use 0 to fetch messages from the current time.

  • Optional count?: number

    Specifies the number of messages to retrieve, range: 1-100 For SDK versions < 5.7.4, the range is [1-20]; for SDK versions ≧ 5.7.4, the range is [1-100]. Default value is 20.

  • Optional order?: 0 | 1

    Message sorting order 0: Ascending 1: Descending

GetHistoryMessageResult: { list: IAReceivedMessage[]; hasMore: boolean }

Structure of retrieved historical messages

Type declaration

EventListeners: { CONNECTING: any; CONNECTED: any; DISCONNECT: any; SUSPEND: any; MESSAGES: any; READ_RECEIPT_RECEIVED: any; MESSAGE_RECEIPT_REQUEST: any; MESSAGE_RECEIPT_RESPONSE: any; CONVERSATION: any; CHATROOM: any; EXPANSION: any; PULL_OFFLINE_MESSAGE_FINISHED: any; TAG: any; CONVERSATION_TAG: any; TYPING_STATUS: any; MESSAGE_BLOCKED: any; ULTRA_GROUP_ENABLE: any; OPERATE_STATUS: any; ULTRA_GROUP_MESSAGE_EXPANSION_UPDATED: any; ULTRA_GROUP_MESSAGE_MODIFIED: any; ULTRA_GROUP_MESSAGE_RECALLED: any; ULTRA_GROUP_CHANNEL_TYPE_CHANGE: any; ULTRA_GROUP_CHANNEL_DELETE: any; ULTRA_GROUP_CHANNEL_USER_KICKED: any; USER_GROUP_STATUS: any; PRIVATE_MESSAGE_DELIVERED: any; GROUP_MESSAGE_DELIVERED: any; MESSAGE_READ_RECEIPT_V4: any; SYNC_READ_STATUS: any; SUBSCRIBED_USER_STATUS_CHANGE: any; SUBSCRIBED_RELATION_CHANGE: any; SYNC_SUBSCRIBED_USER_STATUS_FINISHED: any; OWN_USER_PROFILE_CHANGED: any; GROUP_OPERATION: any; GROUP_INFO_CHANGED: any; GROUP_MEMBER_INFO_CHANGED: any; GROUP_APPLICATION_EVENT: any; GROUP_REMARK_CHANGED_SYNC: any; GROUP_FOLLOWS_CHANGED_SYNC: any; FRIEND_ADDED: any; FRIEND_DELETE: any; FRIEND_APPLICATION_STATUS_CHANGED: any; FRIEND_CLEARED: any; FRIEND_INFO_CHANGED_SYNC: any; DATABASE_UPGRADE_WILL_START: any; DATABASE_UPGRADING: any; DATABASE_UPGRADE_DID_COMPLETE: any }

Event listener

Type declaration

  • CONNECTING:function
    • CONNECTING(): void
    • Returns void

  • CONNECTED:function
    • CONNECTED(): void
    • Returns void

  • DISCONNECT:function
    • Parameters

      Returns void

  • SUSPEND:function
    • Parameters

      Returns void

  • MESSAGES:function
    • Parameters

      Returns void

  • READ_RECEIPT_RECEIVED:function
  • MESSAGE_RECEIPT_REQUEST:function
  • MESSAGE_RECEIPT_RESPONSE:function
  • CONVERSATION:function
    • Parameters

      Returns void

  • CHATROOM:function
  • EXPANSION:function
  • PULL_OFFLINE_MESSAGE_FINISHED:function
    • PULL_OFFLINE_MESSAGE_FINISHED(): void
    • Returns void

  • TAG:function
    • TAG(): void
    • Returns void

  • CONVERSATION_TAG:function
    • CONVERSATION_TAG(): void
    • Returns void

  • TYPING_STATUS:function
    • Parameters

      Returns void

  • MESSAGE_BLOCKED:function
  • ULTRA_GROUP_ENABLE:function
  • OPERATE_STATUS:function
  • ULTRA_GROUP_MESSAGE_EXPANSION_UPDATED:function
    • Parameters

      Returns void

  • ULTRA_GROUP_MESSAGE_MODIFIED:function
    • Parameters

      Returns void

  • ULTRA_GROUP_MESSAGE_RECALLED:function
    • Parameters

      Returns void

  • ULTRA_GROUP_CHANNEL_TYPE_CHANGE:function
  • ULTRA_GROUP_CHANNEL_DELETE:function
  • ULTRA_GROUP_CHANNEL_USER_KICKED:function
  • USER_GROUP_STATUS:function
  • PRIVATE_MESSAGE_DELIVERED:function
    • Parameters

      Returns void

  • GROUP_MESSAGE_DELIVERED:function
  • MESSAGE_READ_RECEIPT_V4:function
    • Parameters

      Returns void

  • SYNC_READ_STATUS:function
  • SUBSCRIBED_USER_STATUS_CHANGE:function
  • SUBSCRIBED_RELATION_CHANGE:function
  • SYNC_SUBSCRIBED_USER_STATUS_FINISHED:function
    • Parameters

      Returns void

  • OWN_USER_PROFILE_CHANGED:function
    • Parameters

      Returns void

  • GROUP_OPERATION:function
  • GROUP_INFO_CHANGED:function
    • Parameters

      Returns void

  • GROUP_MEMBER_INFO_CHANGED:function
  • GROUP_APPLICATION_EVENT:function
  • GROUP_REMARK_CHANGED_SYNC:function
  • GROUP_FOLLOWS_CHANGED_SYNC:function
  • FRIEND_ADDED:function
    • Parameters

      Returns void

  • FRIEND_DELETE:function
    • Parameters

      Returns void

  • FRIEND_APPLICATION_STATUS_CHANGED:function
  • FRIEND_CLEARED:function
    • FRIEND_CLEARED(data: number): void
    • Parameters

      • data: number

      Returns void

  • FRIEND_INFO_CHANGED_SYNC:function
  • DATABASE_UPGRADE_WILL_START:function
    • DATABASE_UPGRADE_WILL_START(): void
    • Returns void

  • DATABASE_UPGRADING:function
    • DATABASE_UPGRADING(progress: number): void
    • Parameters

      • progress: number

      Returns void

  • DATABASE_UPGRADE_DID_COMPLETE:function
    • DATABASE_UPGRADE_DID_COMPLETE(code: ErrorCode): void
    • Parameters

      Returns void

Ultra group

  • Get ultra group conversation list

    description

    Retrieves the list of ultra group conversations. If no parameters are passed, it returns all ultra group conversations. This list does not include conversations without any messages.

    since

    5.2.0 Only supported by IMLib on the Web. The Electron solution is not applicable to ultra group services.

    defaultvalue

    The default value for options is {}.

    example

    Example of retrieving the ultra group conversation list:

    const res = await RongIMLib.getUltraGroupList();
    console.log('Ultra group conversation list result:', res);

    Parameters

    • options: IGetUltraGroupListOption = {}

      Parameters for retrieving the ultra group conversation list. If not provided, it returns all ultra group conversations.

    Returns Promise<IAsyncRes<IUltraGroupConversation[]>>

    Returns a Promise of type IAsyncRes, where data is the list of ultra group conversations {@link IUltraGroupConversation[]}, and code is the status code returned by the API.

  • Get the Do Not Disturb ultra group conversation list of the currently logged-in user

    description

    Retrieves the Do Not Disturb ultra group conversation list of the currently logged-in user

    since

    5.2.0 Only supported in Web IMLib. The Electron solution is not applicable to ultra group services.

    example

    Example of getting the Do Not Disturb ultra group conversation list of the currently logged-in user:

    const res = await RongIMLib.getBlockUltraGroupList();
    console.log('Result of getting the Do Not Disturb ultra group conversation list:', res);

    Returns Promise<IAsyncRes<IBaseConversationInfo[]>>

    Returns a Promise of type IAsyncRes, where data is the ultra group conversation list {@link IUltraGroupConversation[]}, and code is the interface return status code

  • Send typing status

    description

    Sends a typing status to notify the server that the user is currently typing.

    since

    5.2.0 Only Web IMLib supports Ultra group. The Electron solution is not applicable to Ultra group business.

    example

    Example of sending a typing status:

    const options = {
    conversationType: RongIMLib.ConversationType.ULTRA_GROUP,
    targetId: 'targetId',
    channelId: 'channelId',
    };
    const res = await RongIMLib.sendUltraGroupTypingStatus(options);
    console.log('Result of sending typing status:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, where the code represents the interface return status code.

  • getUltraGroupUnreadMentionedCountByTargetId(targetId: string, notificationLevels?: NotificationLevel[]): Promise<IAsyncRes<number>>
  • Get the unread mention count for a specified conversation

    description

    Retrieves the count of unread mentions for the current user in a specified ultra group conversation

    since

    5.5.1 Only supported by IMLib on the Web. The Electron solution is currently not applicable to ultra group services.

    example

    Example of getting the unread mention count for a specified conversation:

    const targetId = 'targetId';
    const res = await RongIMLib.getUltraGroupUnreadMentionedCountByTargetId(targetId);
    console.log('Result of getting the unread mention count for the specified conversation:', res);

    Parameters

    • targetId: string

      The ID of the ultra group

    • Optional notificationLevels: NotificationLevel[]

      The Do Not Disturb levels. If not provided or an empty array is passed, all levels will be retrieved. The type is an array of NotificationLevel

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where data is the count of unread mentions, and code is the status code returned by the API

  • Query the default Do Not Disturb level for a specified ultra group or channel

    since

    5.2.0 Only the Web IMLib supports ultra groups. The Electron solution is not applicable to ultra group business.

    example

    Example of querying the default Do Not Disturb level for a specified ultra group or channel:

    const options = {
    targetId: 'targetId',
    channelId: 'channelId',
    };
    const res = await RongIMLib.getUltraGroupDefaultNotificationLevel(options);
    console.log('Result of querying the default Do Not Disturb level for the specified ultra group or channel:', res);

    Parameters

    • options: IUltraGroupOption

      Parameters for querying the default Do Not Disturb level of an ultra group or channel, including conversation type, target ID, and channel ID, of type IUltraGroupOption

    Returns Promise<IAsyncRes<NotificationLevel>>

    Returns a Promise of type IAsyncRes, where data is the default Do Not Disturb level and code is the interface return status code

  • Set the default Do Not Disturb level for a specified ultra group or channel

    description

    The default Do Not Disturb logic set for a specified ultra group automatically applies to all channels under the group. If a default Do Not Disturb logic is separately set for a channel, the channel's default setting takes precedence.

    since

    5.2.0 Only the Web version of IMLib supports ultra groups. The Electron solution is not applicable to ultra group services yet.

    example

    Example of setting the default Do Not Disturb level for a specified ultra group or channel:

    const options = {
    targetId: 'targetId',
    channelId: 'channelId',
    };
    const notificationLevel = RongIMLib.NotificationLevel.NOT_MESSAGE_NOTIFICATION;
    const res = await RongIMLib.setUltraGroupDefaultNotificationLevel(options, notificationLevel);
    console.log('Result of setting the default Do Not Disturb level for the specified ultra group or channel:', res);

    Parameters

    • options: IUltraGroupOption

      Parameters for setting the default Do Not Disturb level for an ultra group or channel, including conversation type, target ID, and channel ID. The type is IUltraGroupOption. To set the default notification configuration for an ultra group, use options: \{ targetId: 'xxx' \}, where channelId is not passed or is passed as ''. To set the default notification configuration for a specified channel in an ultra group, use options: \{ targetId: 'xxx', channelId: 'xxx' \}.

    • notificationLevel: NotificationLevel

      The Do Not Disturb level. @since 5.3.0, the type of notificationLevel is NotificationLevel.

    Returns Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, where code indicates the interface return status code.

  • Get the unread message count for a specified conversation

    description

    Retrieves the unread message count for the current user in a specified ultra group conversation

    since

    5.5.1 Only the Web IMLib supports ultra groups. The Electron solution is not yet applicable to ultra group services.

    example

    Example of getting the unread message count for a specified conversation:

    const targetId = 'targetId';
    const res = await RongIMLib.getUltraGroupUnreadCountByTargetId(targetId);
    console.log('Result of getting the unread message count for the specified conversation:', res);

    Parameters

    • targetId: string

      The ID of the ultra group

    • Optional notificationLevels: NotificationLevel[]

      The Do Not Disturb levels. If not provided or an empty array is passed, all levels will be retrieved. The type is an array of NotificationLevel

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where data is the unread message count and code is the status code returned by the API

  • getAllUltraGroupUnreadCount(): Promise<IAsyncRes<number>>
  • Total unread count for ultra group type

    since

    5.2.0 Only Web IMLib supports ultra groups. The Electron solution is not currently applicable to ultra group services.

    example

    Example of total unread count for ultra group type:

    const res = await RongIMLib.getAllUltraGroupUnreadCount();
    console.log('Total unread count for ultra group type:', res);

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where data represents the unread count and code represents the interface return status code

  • getAllUltraGroupUnreadMentionedCount(): Promise<IAsyncRes<number>>
  • Get the total count of unread @ mentions across all conversations

    description

    Retrieves the total count of unread @ mentions in all ultra group conversations that the current user has joined

    since

    5.2.0 Only supported in Web IMLib. The Electron solution is currently not applicable to ultra group services.

    example

    Example of getting the total count of unread @ mentions across all conversations:

    const res = await RongIMLib.getAllUltraGroupUnreadMentionedCount();
    console.log('Result of getting the total count of unread @ mentions:', res);

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where data represents the count of unread @ mentions, and code indicates the status code returned by the API

  • Get the list of unread @ messages for a specified ultra group conversation

    description

    Fetches the summary data of unread @ messages from the specified ultra group channel on the remote server. A maximum of 50 messages can be retrieved (count range: [1-50]). Note: This feature relies on the "Unread @ Message Summary" data stored on the RC server. The summary data for "@all" messages is stored for a fixed period of 7 days (non-adjustable). The summary data for other types of @ messages follows the same storage duration as the ultra group's historical messages.

    since

    5.5.2 Only supported by IMLib on the Web. The Electron solution is not applicable to ultra group services.

    example

    Example of fetching the list of unread @ messages for a specified conversation:

    const options = {
    targetId: 'targetId',
    channelId: 'channelId',
    sentTime: 0,
    count: 10,
    };
    const res = await RongIMLib.getUltraGroupUnreadMentionedMessages(options);
    console.log('Result of fetching the list of unread @ messages for a specified conversation:', res);

    Parameters

    Returns Promise<IAsyncRes<IUltraUnreadMsg[]>>

    Returns a Promise of type IAsyncRes, where data contains the list of unread @ messages and code represents the status code returned by the API.

  • Get the timestamp of the first unread message in a specified conversation

    description

    Retrieves the timestamp of the first unread message for the current user in a specified ultra group conversation or channel.

    since

    5.5.2 Only supported in Web IMLib. The Electron solution is not yet applicable to ultra group services.

    example

    Example of retrieving the timestamp of the first unread message in a specified conversation:

    const conversation = {
    targetId: 'targetId',
    channelId: 'channelId',
    };
    const res = await RongIMLib.getUltraGroupFirstUnreadMessageTimestamp(conversation);
    console.log('Result of retrieving the timestamp of the first unread message:', res);

    Parameters

    • conversation: IUltraGroupOption

      Parameters for retrieving the timestamp of the first unread message in a specified conversation, including conversation type, target ID, and channel ID. Type: IUltraGroupOption

    Returns Promise<IAsyncRes<IUltraUnreadMsg>>

    Returns a Promise of type IAsyncRes, where data is the timestamp of the first unread message in the specified conversation, and code is the status code returned by the API.

  • Batch Get Ultra group Conversation Information

    description

    Fetches the IUltraGroupUnreadInfo information for all channels under the specified conversation IDs.

    since

    5.7.10

    example

    Example of batch fetching Ultra group conversation information:

    const targetIds = ['targetId1', 'targetId2'];
    const res = await RongIMLib.getUltraGroupUnreadInfoList(targetIds);
    console.log('Batch Ultra group Conversation Information Result:', res);

    Parameters

    • targetIds: string[]

      An array of Ultra group IDs, with a length limit of [1-20] items.

    Returns Promise<IAsyncRes<IUltraGroupUnreadInfo[]>>

    Returns a Promise of type IAsyncRes, where data contains the list of Ultra group conversation information, and code represents the API response status code.

User profile

  • Update user profile

    description

    This method is used to update the profile information of the current user.

    since

    5.10.1

    example

    Example of updating user profile:

    const profile = {
    name: 'name',
    portraitUri: 'portraitUri',
    email: 'email',
    birthday: 'birthday',
    gender: 1,
    location: 'location',
    role: 1,
    level: 1,
    extraProfile: {
    key1: 'value1',
    key2: 'value2',
    },
    }
    const res = await RongIMLib.updateMyUserProfile(profile);
    console.log('User profile update result:', res);

    Parameters

    Returns Promise<IAsyncRes<{ errorKey: string }>>

    Returns a Promise of type IAsyncRes, where the data is of type { errorKey: string }

  • Get current user profile

    description

    This method is used to retrieve the profile information of the current user.

    since

    5.10.1

    example

    Example of getting the current user profile:

    const res = await RongIMLib.getMyUserProfile();
    console.log('Result of getting the current user profile:', res);

    Returns Promise<IAsyncRes<IUserProfileInfo>>

    Returns a Promise of type IAsyncRes, where the data is of type IUserProfileInfo.

  • User permission settings

    description

    This method is used to set user information permissions.

    since

    5.10.1

    example

    Example of user permission settings:

    const visibility = RongIMLib.UserProfileVisibility.EVERYONE;
    const res = await RongIMLib.updateMyUserProfileVisibility(visibility);
    console.log('User permission settings result:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, where data is of type void

  • User permission acquisition

    description

    This method is used to acquire user information permissions.

    since

    5.10.1

    example

    Example of user permission acquisition:

    const res = await RongIMLib.getMyUserProfileVisibility();
    console.log('User permission acquisition result:', res);

    Returns Promise<IAsyncRes<UserProfileVisibility>>

    Returns a Promise of type IAsyncRes, where the data is of type UserProfileVisibility.

  • Search for user information by unique application ID

    description

    This method is used to search for user information by unique application ID.

    since

    5.10.1

    example

    Example of searching for user information by unique application ID:

    const uniqueId = 'uniqueId';
    const res = await RongIMLib.searchUserProfileByUniqueId(uniqueId);
    console.log('Search result by unique application ID:', res);

    Parameters

    • uniqueId: string

      The user's unique application ID

    Returns Promise<IAsyncRes<IUserProfileInfo>>

    Returns a Promise of type IAsyncRes, where the data is of type IUserProfileInfo

User profiles

  • Batch get user profiles

    description

    This method is used to batch retrieve user profile information.

    since

    5.10.1

    example

    Example of batch retrieving user profiles:

    const userIds = ['user1', 'user2'];
    const res = await RongIMLib.getUserProfiles(userIds);
    console.log('Batch user profiles result:', res);

    Parameters

    • userIds: string[]

      List of user IDs, with a maximum of 100 IDs per request

    Returns Promise<IAsyncRes<IUserProfileInfo[]>>

    Returns a Promise of type IAsyncRes, where the data is an array of type IUserProfileInfo

blacklist

  • addToBlacklist(userId: string): Promise<IAsyncRes<void>>
  • Add to blacklist

    description

    This feature is currently only available in the Electron solution. After adding a user to the blacklist, you will no longer receive any one-to-one chat messages from them. Note:

    1. Adding to the blacklist is a one-way operation. For example, if User A blocks User B, B cannot send messages to A (error code 405). However, A can still send messages to B, and B will receive them normally.
    2. There is an upper limit to the total number of users a single user can add to their blacklist, which depends on the pricing plan. The limit is 3000 for Chat Premium Plan and Chat Ultimate Plan. For other plans, please refer to the service limitations in the feature comparison table.
    3. By default, sending one-to-one messages via the server API is not restricted by the blacklist. To enable this restriction, set verifyBlacklist to 1 when calling the API.
    since

    5.4.0

    example

    Example of adding to the blacklist:

    const userId = 'userId';
    const res = await RongIMLib.addToBlacklist(userId);
    console.log('blacklist addition result:', res);

    Parameters

    • userId: string

      User ID

    Returns Promise<IAsyncRes<void>>

  • removeFromBlacklist(userId: string): Promise<IAsyncRes<void>>
  • Remove from blacklist

    description

    This feature is currently limited to the Electron solution. After removing a user from the blacklist, the user will resume receiving any one-to-one chat messages from the previously blocked user.

    since

    5.4.0

    example

    Example of removing from blacklist:

    const userId = 'userId';
    const res = await RongIMLib.removeFromBlacklist(userId);
    console.log('Result of removing from blacklist:', res);

    Parameters

    • userId: string

      User ID

    Returns Promise<IAsyncRes<void>>

  • Get blacklist

    description

    This feature is currently only available in the Electron solution for retrieving the blacklist.

    since

    5.4.0

    example

    Example of retrieving the blacklist:

    const res = await RongIMLib.getBlacklist();
    console.log('blacklist retrieval result:', res);

    Returns Promise<IAsyncRes<string[]>>

  • getBlacklistStatus(userId: string): Promise<IAsyncRes<boolean>>
  • Check if a user is in the blacklist

    description

    This feature is currently limited to the Electron solution and is used to check if a user is in the blacklist.

    since

    5.4.0

    example

    Example of retrieving the blacklist:

    const userId = 'userId';
    const res = await RongIMLib.getBlacklistStatus(userId);
    console.log('blacklist retrieval result:', res);

    Parameters

    • userId: string

      User ID

    Returns Promise<IAsyncRes<boolean>>

其他

EnableLogL: DEBUG | INFO | WARN | ERROR
IEventListener: ((...args: any[]) => void)

Type declaration

    • (...args: any[]): void
    • Parameters

      • Rest ...args: any[]

      Returns void

IChatRoomEntry: IChatroomEntry

This definition is deprecated. Please use IChatroomEntry instead.\n * @category Type\n * @deprecated

  • Query real-time conversation list

    description

    This API requires enabling the real-time conversation service

    since

    5.12.3

    Parameters

    • Optional options: { count?: number; startTime?: number; order?: 0 | 1 }
      • Optional count?: number

        Number of conversations, maximum supported: 50

      • Optional startTime?: number

        Get Start Time Default value: 0 When order is 0, startTime defaults to the current time When order is 1, startTime defaults to the earliest message time in all conversations

      • Optional order?: 0 | 1

        Default value: 0 0: Retrieve messages before the startTime 1: Retrieve messages after the startTime

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

  • getRealtimeConTotalUnreadCount(): Promise<IAsyncRes<number>>
  • Query real-time conversation unread count

    description

    This API requires enabling the real-time conversation service

    since

    5.12.3

    Returns Promise<IAsyncRes<number>>

  • Clear Unread Count for Real-time Conversations

    description

    This API requires the real-time conversation service to be enabled.

    since

    5.12.3

    Parameters

    Returns Promise<IAsyncRes>

  • Delete real-time conversations

    description

    This API requires the real-time conversation service to be enabled.

    since

    5.12.3

    Parameters

    Returns Promise<IAsyncRes>

  • Batch Query Real-time Conversation Unread Count

    description

    This API requires the real-time conversation service to be enabled

    since

    5.12.3

    Parameters

    Returns Promise<IAsyncRes<IConversationUnreadCount[]>>

  • __addSDKVersion(name: string, version: string): void
  • Parameters

    • name: string
    • version: string

    Returns void

  • Set global Do Not Disturb configuration

    Parameters

    Returns Promise<RCResult>

  • removeNotificationQuietHoursSetting(): Promise<RCResult>
  • Remove global Do Not Disturb configuration

    Returns Promise<RCResult>

  • stopUploadTask(taskId: number): Promise<IAsyncRes<boolean>>
  • Parameters

    • taskId: number

    Returns Promise<IAsyncRes<boolean>>

  • getFileToken(fileType: FileType, fileName?: string, httpMethod?: "POST" | "PUT", queryString?: string): Promise<IAsyncRes<IUploadAuth & { bos: string; qiniu: string; ossConfig: string }>>
  • Parameters

    • fileType: FileType
    • Optional fileName: string
    • Optional httpMethod: "POST" | "PUT"
    • Optional queryString: string

    Returns Promise<IAsyncRes<IUploadAuth & { bos: string; qiniu: string; ossConfig: string }>>

  • getDownloadAuth(url: string): Promise<IAsyncRes<{ deadline: number; token?: string; downloadAuthInfo?: IDownloadAuth }>>
  • Parameters

    • url: string

    Returns Promise<IAsyncRes<{ deadline: number; token?: string; downloadAuthInfo?: IDownloadAuth }>>

  • getFileUrl(fileType: FileType, filename?: string, saveName?: string, uploadRes?: { isBosRes: boolean; downloadUrl: string }, serverType?: UploadMethod): Promise<IAsyncRes<{ downloadUrl: string }>>
  • Parameters

    • fileType: FileType
    • Optional filename: string
    • Optional saveName: string
    • Optional uploadRes: { isBosRes: boolean; downloadUrl: string }
      • isBosRes: boolean
      • downloadUrl: string
    • Optional serverType: UploadMethod

    Returns Promise<IAsyncRes<{ downloadUrl: string }>>

好友

  • refuseFriendApplication(userId: string): Promise<IAsyncRes<void>>
  • 拒绝加为好友

    since

    5.12.0

    Parameters

    • userId: string

      拒绝成为好友的用户ID // * @param reason 拒绝原因。非必填项,长度不超过 128 个字符。

    Returns Promise<IAsyncRes<void>>