Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace default

AgoraRTM is the exported module of the Agora RTM SDK.

If you import the Agora RTM Web SDK using the <script> tag, the SDK creates a global variable called AgoraRTM, which includes all the module members.

example

Direct include <script src="agora-rtm-sdk-0.9.1.js"></script> in your HTML.

Note:

The version `0.9.1` in the file name `agora-rtm-sdk-0.9.1.js` is for reference only, please use the latest version of the SDK.

Index

Variables

AreaCode: typeof RtmStatusCode.AreaCode

Region for the Agora RTM service. The default is GLOBAL. See AreaCode.

BUILD: string

Compilation information of the Agora RTM SDK.

example

AgoraRTM.BUILD

ConnectionChangeReason: typeof RtmStatusCode.ConnectionChangeReason

The reason of the connection state change.

ConnectionState: typeof RtmStatusCode.ConnectionState

The connection state.

END_CALL_PREFIX: string
LOG_FILTER_ERROR: LogFilterType

Output ERROR level log information.

LOG_FILTER_INFO: LogFilterType

Output ERROR, WARNING, and INFO level log information.

LOG_FILTER_OFF: LogFilterType

Do not output any log information.

LOG_FILTER_WARNING: LogFilterType

Output WARNING and INFO level log information.

LocalInvitationFailureReason: typeof RtmStatusCode.LocalInvitationFailureReason

(Return to the caller) The reason of the local invitation failure.

LocalInvitationState: typeof RtmStatusCode.LocalInvitationState

Call invitation state returned to the caller.

MessageType: typeof RtmStatusCode.MessageType

Message type.

PeerOnlineState: typeof RtmStatusCode.PeerOnlineState

Online state of the user.

PeerSubscriptionOption: typeof RtmStatusCode.PeerSubscriptionOption

Subscription type.

RemoteInvitationFailureReason: typeof RtmStatusCode.RemoteInvitationFailureReason

(Return to the callee) The reason of the local invitation failure.

RemoteInvitationState: typeof RtmStatusCode.RemoteInvitationState

Call invitation state returned to the callee.

VERSION: string

Version of the Agora RTM SDK.

example

AgoraRTM.VERSION

Functions

  • Creates and returns an RtmClient instance.

    The Agora RTM SDK supports creating multiple RtmClient instances.

    All methods in the RtmClient class are executed asynchronously.

    deprecated

    From v2.3.2. Use createInstance instead.

    Creates and returns an RtmClient instance.

    The Agora RTM SDK supports creating multiple RtmClient instances.

    All methods in the RtmClient class are executed asynchronously.

    example

    Create an RtmClient instance

    import AgoraRTM from 'agora-rtm-sdk';
    const client = AgoraRTM.createInstance('demoAppId', { enableLogUpload: false }); // Pass your App ID here.

    Parameters

    • appId: string

      App ID of your project that must be a string containing 32 ASCII characters.

    • Optional config: RtmConfig

      The configuration of an RtmClient instance. See {@link RtmConfig}.

    • Optional areaCodes: RtmStatusCode.AreaCode[]

      Region for the Agora RTM service. See AreaCode.

    Returns RtmClient

    An RtmClient instance.

  • Creates and returns an RtmClient instance.

    The Agora RTM SDK supports creating multiple RtmClient instances.

    All methods in the RtmClient class are executed asynchronously.

    example

    Create an RtmClient instance

    import AgoraRTM from 'agora-rtm-sdk';
    const client = AgoraRTM.createInstance('demoAppId', { enableLogUpload: false }); // Pass your App ID here.

    Parameters

    • appId: string

      App ID of your project that must be a string containing 32 ASCII characters.

    • Optional config: RtmConfig

      The configuration of an RtmClient instance. See {@link RtmConfig}.

    Returns RtmClient

    An RtmClient instance.

  • since

    1.4.3

    Sets the regions for connection.

    Note:

    • This advanced feature applies to scenarios that have regional restrictions.
    • By default, the SDK connects to nearby Agora servers. After specifying the regions, the SDK connects to the Agora servers within those regions.
    • You can remove some areas from the region for connection.

    Parameters

    Returns void

Generated using TypeDoc