API | Description |
Initialize TUICallKit. | |
Makes a one-to-one call, Support for custom room ID, call timeout, offline push content, etc | |
Makes a group call, Support for custom room ID, call timeout, offline push content, etc | |
Join a group call, v3.1.2+ support | |
Customize user's ringtone, v3.0.0+ support | |
Set your own nickname and avatar, v2.2.0+ support | |
Turn on/off ringtone, v3.1.2+ support | |
Turn on/off the floating window function, v3.1.0+ support | |
Turn on/off the blurred background function button. v3.2.4+ support | |
Set the call language for the TUICallKit component | |
Hidden Button, v3.2.9+ support | |
Set the background image for the local user's call interface, v3.2.9+ support | |
Set the background image for the remote user's call interface, v3.2.9+ support | |
Set the call interface layout mode, v3.3.0+ support | |
et whether the camera is opened by default, v3.3.0+ support | |
Destroy TUICallKit |
<TUICallKit/>
attributesAttribute | Description | Type | Required | Default Value | Vue is supported | React is supported |
allowedMinimized | Is the floating window permitted? | boolean | No | false |
√
| √ |
allowedFullScreen | Whether to permit full screen mode for the call interface | boolean | No | true | √ | √ |
Display mode for the call interface | VideoDisplayMode | No | VideoDisplayMode.COVER | √ | √ | |
Call Resolution | VideoResolution | No | VideoResolution.RESOLUTION_480P | √ | √ | |
beforeCalling | This function will be executed prior to making a call and before receiving an invitation to talk | function(type, error) | No | - | √ | √ |
afterCalling | This function will be executed after the termination of the call | function() | No | - | √ | √ |
onMinimized | This function will be executed when the component switches to a minimized state. The explanation for the STATUS value is | function(oldStatus, newStatus) | No | - | √ | × |
kickedOut | The events thrown by the component occur when the current logged-in user is ejected. The call will also automatically terminate | function() | No | - | √ | × |
statusChanged | Event thrown by the component; this event is triggered when the call status changes. For detailed types of call status, refer to STATUS value description | function({oldStatus, newStatus}) | No | - | √ | × |
import { TUICallKit, VideoDisplayMode, VideoResolution } from "@tencentcloud/call-uikit-react";<TUICallKitvideoDisplayMode={VideoDisplayMode.CONTAIN}videoResolution={VideoResolution.RESOLUTION_1080P}beforeCalling={handleBeforeCalling}afterCalling={handleAfterCalling}/>function handleBeforeCalling(type: string, error: any) {console.log("[TUICallkit Demo] handleBeforeCalling:", type, error);}function handleAfterCalling() {console.log("[TUICallkit Demo] handleAfterCalling");}
<template><TUICallKit:allowedMinimized="true":allowedFullScreen="true":videoDisplayMode="VideoDisplayMode.CONTAIN":videoResolution="VideoResolution.RESOLUTION_1080P":beforeCalling="beforeCalling":afterCalling="afterCalling":onMinimized="onMinimized":kickedOut="handleKickedOut":statusChanged="handleStatusChanged"/></template><script lang="ts" setup>import { TUICallKit, TUICallKitServer, VideoDisplayMode, VideoResolution, STATUS } from "@tencentcloud/call-uikit-vue";function beforeCalling(type: string, error: any) {console.log("[TUICallkit Demo] beforeCalling:", type, error);}function afterCalling() {console.log("[TUICallkit Demo] afterCalling");}function onMinimized(oldStatus: string, newStatus: string) {console.log("[TUICallkit Demo] onMinimized: " + oldStatus + " -> " + newStatus);}function kickedOut() {console.log("[TUICallkit Demo] kickedOut");}function statusChanged(args: { oldStatus: string; newStatus: string; }) {const { oldStatus, newStatus } = args;if (newStatus === STATUS.CALLING_C2C_VIDEO) {console.log(`[TUICallkit Demo] statusChanged: ${oldStatus} -> ${newStatus}`);}}</script>
import { TUICallKitServer } from "@tencentcloud/call-uikit-react";// Replace it with the call-uikit npm package you are currently using
try {await TUICallKitServer.init({ SDKAppID, userID, userSig });// If you already have a tim instance in your project, you need to pass it in here// await TUICallKitServer.init({ tim, SDKAppID, userID, userSig});console.log("[TUICallKit] Initialization succeeds.");} catch (error: any) {console.error(`[TUICallKit] Initialization failed. Reason: ${error}`);}
Parameter | Type | Required | Meaning |
SDKAppID | Number | Yes | The SDKAppID of your app, you can find your SDKAppID in the Live Audio and Video console. For details, see Activating Services. |
userID | String | Yes | The current user's ID is of string type, only allowing for the inclusion of English letters (a-z and A-Z), digits (0-9), hyphens (-) and underscores (_) |
userSig | String | Yes | Use SDKSecretKey to encrypt SDKAppID, UserID and other information to obtain userSig. It is an authentication ticket used by Tencent Cloud to identify whether the current user can use TRTC services. For how to obtain it, please refer to How to Calculate UserSig |
tim | TencentCloudChat | No |
import { TUICallKitServer, TUICallType } from '@tencentcloud/call-uikit-react';try {await TUICallKitServer.call({userID: 'mike',type: TUICallType.VIDEO_CALL,});} catch (error: any) {console.error(`[TUICallKit] Call failed. Reason: ${error}`);}
Parameter | Type | Required | Meaning |
userID | String | Yes | The username of the called user |
type | Yes | ||
roomID | Number | No | Numerical Room ID, range [1, 2147483647] |
strRoomID | String | No | String room ID. v3.3.1+ supported
range: Limited to 64 bytes in length. The supported character set range is as follows (a total of 89 characters): Lowercase and uppercase English letters.(a-zA-Z); Number(0-9); Spaces 、! 、# 、$ 、% 、& 、( 、) 、+ 、- 、: 、; 、< 、= 、. 、> 、? 、@ 、[ 、] 、^ 、_ 、{ 、} 、| 、~ 、, 。1. roomID and strRoomID are mutually exclusive, if you use strRoomID, then roomID should be 0. If you use both, the SDK will prioritize the roomID. 2. 2. don't mix roomID and strRoomID, because they are not interchangeable, for example, the number 123 and the string "123" are two completely different rooms. |
timeout | Number | No | Call timeout, default: 30s, unit: seconds. timeout = 0, set to no timeout |
userData | String | No | Customize the extended fields when initiating a call. The called user has this parameter in the ON_CALL_RECEIVED event. |
Object | No | Customize offline message push parameters |
import { TUICallKitServer, TUICallType } from '@tencentcloud/call-uikit-react';try {await TUICallKitServer.groupCall({userIDList: ['jack', 'tom'],groupID: "xxx",type: TUICallType.VIDEO_CALL});} catch (error: any) {console.error(`[TUICallKit] Failed to call the groupCall API. Reason:${error}`);}
Parameter | Type | Required | Meaning |
userIDList | Array<String> | Yes | List of called users |
type | Yes | The type of media for the call, you can refer to TUICallType for the explanation of parameter values | |
groupID | String | Yes | |
roomID | Number | No | Numerical Room ID, range [1, 2147483647] |
strRoomID | String | No | String room ID. v3.3.1+ supported
range: Limited to 64 bytes in length. The supported character set range is as follows (a total of 89 characters): Lowercase and uppercase English letters.(a-zA-Z); Number(0-9); Spaces 、! 、# 、$ 、% 、& 、( 、) 、+ 、- 、: 、; 、< 、= 、. 、> 、? 、@ 、[ 、] 、^ 、_ 、{ 、} 、| 、~ 、, 。1. roomID and strRoomID are mutually exclusive, if you use strRoomID, then roomID should be 0. If you use both, the SDK will prioritize the roomID. 2. 2. don't mix roomID and strRoomID, because they are not interchangeable, for example, the number 123 and the string "123" are two completely different rooms. |
timeout | Number | No | Call timeout, default: 30s, unit: seconds. timeout = 0, set to no timeout |
userData | String | No | Customize the extended fields when initiating a call. The called user has this parameter in the ON_CALL_RECEIVED event. |
Object | No | Customize offline message push parameters |
TUICallKitServer.setLanguage("zh-cn"); // "en" | "zh-cn" | "ja_JP"
Parameter | Type | Required | Meaning |
lang | String | Yes | Language type en ,zh-cn and ja_JP . |
try {await TUICallKitServer.setSelfInfo({ nickName: "xxx", avatar: "http://xxx" });} catch (error: any) {console.error(`[TUICallKit] Failed to call the setSelfInfo API. Reason: ${error}`;}
Parameter | Type | Required | Meaning |
nickName | String | Yes | own nickname |
avatar | String | Yes | own avatar address |
import filePath from '../assets/phone_ringing.mp3';try {await TUICallKitServer.setCallingBell(filePath);} catch (error: any) {console.error(`[TUICallKit] Failed to call the setCallingBell API. Reason: ${error}`);}
Parameter | Type | Required | Meaning |
filePath | String | Yes | Ringtone file path |
try {const enable = true;await TUICallKitServer.enableFloatWindow(enable);} catch (error: any) {console.error(`[TUICallKit] Failed to call the enableFloatWindow API. Reason: ${error}`);}
Parameter | Type | Required | Meaning |
enable | Boolean | Yes | Turn on/off the floating window function. default false. |
try {const enable = true;await TUICallKitServer.enableMuteMode(enable);} catch (error: any) {console.error(`[TUICallKit] Failed to call the enableMuteMode API. Reason: ${error}`);}
Parameter | Type | Required | Meaning |
enable | Boolean | Yes | Turn on/off the ringtone for incoming calls function. default false. |
import { TUICallKitServer, TUICallType } from '@tencentcloud/call-uikit-react';try {const params = {type: TUICallType.VIDEO_CALL,groupID: "xxx",roomID: 234,};await TUICallKitServer.joinInGroupCall(params);} catch (error: any) {console.error(`[TUICallKit] Failed to call the enableMuteMode API. Reason: ${error}`);}
Parameter | Type | Required | Meaning |
type | Yes | The media type of communication, for instance, video calls, voice calls | |
groupID | string | Yes | The group ID for this group call |
roomID | number | Yes | Audio and video room ID for this call |
import { TUICallKitServer } from "@tencentcloud/call-uikit-react";const enable = true;TUICallKitServer.enableVirtualBackground(enable);
Parameter | Type | Required | Meaning |
enable | boolean | Yes | enable = true, show blur background button enable = false, don't show blur background button |
TUICallKitServer.hideFeatureButton(buttonName: FeatureButton);
Parameter | Type | Required | Meaning |
buttonName | Yes | Button Name |
TUICallKitServer.setLocalViewBackgroundImage(url: string);
Parameter | Type | Required | Meaning |
url | string | Yes | Image Address (supports Local Path and Network Address) |
TUICallKitServer.setRemoteViewBackgroundImage(userId: string, url: string);
Parameter | Type | Required | Meaning |
userId | string | Yes | Remote User userId, setting to '*' means it applies to all Remote Users |
url | string | Yes | Image Address (supports Local Path and Network Address) |
import { TUICallKitServer, LayoutMode } from "@tencentcloud/call-uikit-vue";TUICallKitServer.setLayoutMode(LayoutMode.LocalInLargeView);
import { TUICallKitServer, LayoutMode } from "@tencentcloud/call-uikit-react";TUICallKitServer.setLayoutMode(LayoutMode.LocalInLargeView);
Parameter | Type | Required | Meaning |
layoutMode | Yes | User flow layout mode |
TUICallKitServer.setCameraDefaultState(true);
Parameter | Type | Required | Meaning |
isOpen | boolean | Yes | Whether to enable the camera |
tim
, manual logging out is required: tim.logout();
.try {await TUICallKitServer.destroyed();} catch (error: any) {console.error(`[TUICallKit] Failed to call the destroyed API. Reason: ${error}`);}
videoDisplayMode
display mode:VideoDisplayMode.CONTAIN
VideoDisplayMode.COVER
VideoDisplayMode.FILL
, the default value is VideoDisplayMode.COVER
.Attribute | Value | Description |
videoDisplayMode | VideoDisplayMode.CONTAIN | Ensuring the full display of video content is our top priority. The dimensions of the video are scaled proportionally until one side aligns with the frame of the viewing window. In case of discrepancy in sizes between the video and the display window, the video is scaled - on the premise of maintaining the aspect ratio - to fill the window, resulting in a black border around the scaled video. |
| VideoDisplayMode.COVER | Priority is given to ensure that the viewing window is filled. The video size is scaled proportionally until the entire window is filled. If the video's dimensions are different from those of the display window, the video stream will be cropped or stretched to match the window's ratio. |
| VideoDisplayMode.FILL | Ensuring that the entire video content is displayed while filling the window does not guarantee preservation of the original video's proportion. The dimensions of the video will be stretched to match those of the window. |
videoResolution
has three possible values:VideoResolution.RESOLUTION_480P
VideoResolution.RESOLUTION_720P
VideoResolution.RESOLUTION_1080P
, the default value is VideoResolution.RESOLUTION_480P
.Video Profile | Resolution (W x H) | Frame Rate (fps) | Bitrate (Kbps) |
480p | 640 × 480 | 15 | 900 |
720p | 1280 × 720 | 15 | 1500 |
1080p | 1920 × 1080 | 15 | 2000 |
STATUS attribute value | Description |
STATUS.IDLE | Idle status |
STATUS.BE_INVITED | Received an Audio/Video Call Invite |
STATUS.DIALING_C2C | Initiating a one-to-one call |
STATUS.DIALING_GROUP | Initiating a group call |
STATUS.CALLING_C2C_AUDIO | Engaged in a 1v1 Audio Call |
STATUS.CALLING_C2C_VIDEO | In the midst of a one-to-one video call |
STATUS.CALLING_GROUP_AUDIO | Engaged in Group Audio Communication |
STATUS.CALLING_GROUP_VIDEO | Engaged in group video call |
TUICallType Type | Description |
TUICallType.AUDIO_CALL | Audio Call |
TUICallType.VIDEO_CALL | Video Call |
Parameter | Type | Required | Meaning |
offlinePushInfo.title | String | No | Offline Push Title (Optional) |
offlinePushInfo.description | String | No | Offline Push Content (Optional) |
offlinePushInfo.androidOPPOChannelID | String | No | Setting the channel ID for OPPO phones with 8.0 system and above for offline pushes (Optional) |
offlinePushInfo.extension | String | No | Offline push through content. Can be used to set Android Notification mode and VoIP mode. Default: Notification mode, it will be a notification from the system; VoIP mode is required to pass the field. |
offlinePushInfo.ignoreIOSBadge | Boolean | No | Ignore badge count for offline push (only for iOS), if set to true, the message will not increase the unread count of the app icon on the iOS receiver's side. v3.3.0+ supported |
offlinePushInfo.iOSSound | String | No | Offline push sound setting (only for iOS). v3.3.0+ supported |
offlinePushInfo.androidSound | String | No | Offline push sound setting. v3.3.0+ supported |
offlinePushInfo.androidVIVOClassification | Number | No | Classification of VIVO push messages (deprecated interface, VIVO push service will optimize message classification rules on April 3, 2023. It is recommended to use setAndroidVIVOCategory to set the message category). 0: Operational messages, 1: System messages. The default value is 1. v3.3.0+ supported |
offlinePushInfo.androidXiaoMiChannelID | String | No | Set the channel ID for Xiaomi phones with Android 8.0 and above systems. v3.3.0+ supported |
offlinePushInfo.androidFCMChannelID | String | No | Set the channel ID for google phones with Android 8.0 and above systems. v3.3.0+ supported |
offlinePushInfo.androidHuaWeiCategory | String | No | Classification of Huawei push messages. v3.3.0+ supported |
offlinePushInfo.isDisablePush | Boolean | No | Whether to turn off push notifications (default is on). v3.3.0+ supported |
offlinePushInfo.iOSPushType | Number | No | iOS offline push type,default is 0。0-APNs;1-VoIP. v3.3.0+ supported |
const extension = {timPushFeatures: {fcmPushType: 0, // 0, VoIP; 1, notification}};offlinePushInfo.extension = JSON.stringify(extension);
const extension = {timPushFeatures: {fcmPushType: 0, // 0, data; 1, notificationfcmNotificationType: 1, // 0, TIMPush implementation; 1, business implementation after transparent transmission}};offlinePushInfo.extension = JSON.stringify(extension);
FeatureButton Type | Description |
FeatureButton.Camera | Camera Button |
FeatureButton.Microphone | Microphone Button |
FeatureButton.SwitchCamera | Switches between the front and rear cameras. |
FeatureButton.InviteUser | Invite Others Button |
LayoutMode type | Description |
LayoutMode.LocalInLargeView | Local user in large window display |
LayoutMode.RemoteInLargeView | Remote user in large window display |
Was this page helpful?