Call
  • 개요
    • 제품소개
    • 서비스 활성화
    • 가격
      • 무료시간
      • 오디오/비디오 통화 Call 월정액 패키지
      • 구독 패키지 기간 과금 설명
  • 시작하다
    • 샘플 코드 실행
    • 완성
      • Web&H5 (React)
      • Web&H5 (Vue3)
    • userSig를 통한 보안 인증
  • 기본 기능
    • Conversational Chat
      • Vue3
      • React
    • 커스텀 UI
    • 닉네임 및 아바타 설정
    • 그룹 통화
    • 플로팅 윈도우
    • 사용자 정의 벨소리
    • 해상도 및 채우기 모드 설정
    • 통화 상태 모니터링
    • 언어 설정
  • 고급 기능
    • 가상 배경
    • AI 노이즈 캔슬링
    • 클라우드 녹화
  • 인터페이스 문서
    • UIKit APIs
      • API Overview
      • TUICallKit
    • Engine APIs
      • TUICallEngine
      • TUICallEvent
  • 서버 API
    • 통화 상태 콜백
      • 통화 상태 콜백
      • 통화 이벤트 콜백
      • 콜백 구성
        • 콜백 구성 인터페이스 목록
        • 콜백 구성 생성
        • 콜백 구성 조회
        • 콜백 구성 업데이트
        • 콜백 구성 삭제
    • RESTful 인터페이스
      • Call Records
        • REST 인터페이스 소개
        • callId를 통한 기록 획득
        • 조건에 따른 기록 획득
      • End Calls
  • Solution
    • WhatsApp Clone
  • 일반적인 문제
    • 모든 플랫폼
    • Web
    • ErrorCode
    • 배포 설명
Call
이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.

그룹 통화

This article introduces the use of the group call feature, such as initiating a group call and joining a group call.

Expected outcome

TUICallKit supports group calls. The expected outcome is shown in the figure below.
Web
Mobile Client







Initiate a Multiplayer Call

Initiate a group call by calling the groupCall API.
try {
const params = {
userIDList: ['user1', 'user2'],
type: TUICallType.VIDEO_CALL,
}
await TUICallKitServer.calls(params);
} catch (error: any) {
console.error(`[TUICallKit] calls failed. Reason:${error}`);
}

Join a group call

Join an existing audio and video call in the group by calling the join API.
try {
const params = {
callId: 'xxx'
};
await TUICallKitServer.join(params);
} catch (error: any) {
console.error(`[TUICallKit] join failed. Reason: ${error}`);
}

커뮤니티에 질문하십시오!
기술적인 논의를 시작하고 즉시 전문가 지원을 받으세요!