SIP Call
Step 1. 세션 생성
sdk.createSession(userId = "USER_ID")Step 2. 발신
import io.omnitalk.sdk.types.PublicTypes
val callee = "test@omnistory.net"
sdk.offerCall(
callType = PublicTypes.CALL_TYPE.sipcall,
callee = "01012345678",
record = true,
localView = null,
remoteView = null
)Step 3. 수신
callee가 callNumber를 생성한 상태에서 전화 요청이 왔을때
callee가 callNumber를 생성하기 전 전화 요청이 왔을때
Step 4. 연결 성공
Step 5. 전화 끊기
오디오 장치 제어
mute/unmute
입력 장치 변경
Last updated