-
Notifications
You must be signed in to change notification settings - Fork 1
ViberCall
Adnan Elezović edited this page Feb 7, 2025
·
4 revisions
extends
Call
Returns the options this call was started with.
none
-
ViberCallOptions
- Options that this call was started with.
let infobipRTC = createInfobipRtc('2e29c3a0-730a-4526-93ce-cda44556dab5', {debug: true});
let viberCall = infobipRTC.callViber('41793026727', '33712345678', ViberCallOptions.builder()
.setAutoReconnect(true) // Required in order to receive RECONNECTING and RECONNECTED events
.build());
console.log(`Call options: ${JSON.stringify(viberCall.options())}`);