Description
We’re using Web SDK 1.8.1 to build the meeting page. The functions are working and the meeting started as expected. However the page is totally freeze and non of the buttons are clickable. The audio is also not working.
Error
All the buttons do not have any response after click. Audio is not working, we can’t hear others and other cannot hear us. Participants is showing correct number and if someone chats it also has a popup but the button is still not working.
Which version?
1.8.1
To Reproduce(If applicable)
-
init the SDK
ZoomMtg.setZoomJSLib(‘https://dmogdx0jrul3u.cloudfront.net/1.8.1/lib’, ‘/av’);
ZoomMtg.setZoomJSLib(‘https://source.zoom.us/1.8.1/lib’, ‘/av’);
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
const zoomMeeting = document.getElementById(“zmmtg-root”); -
init the meeting
ZoomMtg.init({
leaveUrl: meetConfig.leaveUrl
}) -
join the meeting
ZoomMtg.join({
signature: signature,
apiKey: meetConfig.apiKey,
meetingNumber: meetConfig.meetingNumber,
userName: meetConfig.userName,
passWord: meetConfig.passWord,
success: (success) => {
console.log(success)
},
error: (error) => {
console.log(error)
}
})
Screenshots
Device (please complete the following information):
- browserInfo: “Chrome/86.0.4240.111”
- browserName: “Chrome”
- browserVersion: “86.0.4240.111”
Additional context
The participant number and chat is updating in real-time. But not sure why all all the buttons are not working at all.