-
Notifications
You must be signed in to change notification settings - Fork 4
音视频通话
张东 edited this page Jun 4, 2024
·
1 revision
聊天 UIKit 内部集成了声网音视频 SDK,可以实现在单人或群组会话中使用音视频通话。
使用时需要配置如下参数,可参考 callkit集成文档 demo参考
import { Chat } from "easemob-chat-uikit";
const ChatApp = () => {
return (
<Chat
rtcConfig={{
onInvite: handleInviteToCall,
agoraUid: agoraUid,
onAddPerson: handleAddPerson,
getIdMap: handleGetIdMap,
onStateChange: handleRtcStateChange,
appId: appId,
getRTCToken: getRtcToken,
}}
/>
);
};