This article describes how to use call status callbacks with the TUICallKit component.
Call State Monitoring
If your business requires monitoring call status, such as events that occur during a call like starting and ending (see TUICallEvent for details), please refer to the following code. const TUICallEngine = uni.requireNativePlugin('TencentCloud-TUICallKit-TUICallEngine');
function handleError(res) {
console.log('onError', JSON.stringify(res);
}
TUICallEngine.addEventListener('onError', handleError);
TUICallEngine.removeEventListener('onError', handleError);
Was this page helpful?