20,000+ 设备
高兼容性
200+ 国家
全球部署优化
<300 ms
全球端到端时延
99.9% 服务等级协议(SLA)
高稳定性和可用性
Use Call to Enhance Any Type of User Experience
仅需要几行代码就能告别繁忙工作
Web
iOS/Mac
Andorid
Flutter
import { TUICallKit, TUICallKitServer, TUICallType } from "@tencentcloud/call-uikit-react";
export default function App() {
const init = async () => {
await TUICallKitServer.init({ userID: 'user1', userSig: 'xxxxxxxxxxx', SDKAppID: 1400000001 });
};
const call = async () => {
await TUICallKitServer.call({ userID: 'user2', type: TUICallType.VIDEO_CALL });
};
return (
<>
<TUICallKit style={{ width: '960px', height: '630px', margin: '0 auto' }}></TUICallKit>
<div style={{ width: 350, margin: '0 auto' }}>
<button onClick={init}> step1: init </button>
<button onClick={call}> step2: 1v1 call </button>
</div>
</>
);
}