Hi,
Am facing issues with web-sdk, It is showing a black screen after calling ZoomMtg.join
and not showing any error or success. It only shows a black screen after joining.
SDK version : “@zoomus/websdk”: “^2.17.0”
React version : “react”: “^17.0.1”
Sample code which I am using
import { ZoomMtg } from "@zoomus/websdk";
ZoomMtg.setZoomJSLib('https://source.zoom.us/2.17.0/lib', '/av');
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
ZoomMtg.init({
debug: true,
leaveUrl: process.env.REACT_APP_ZOOM_LEAVE_URL,
isSupportAV: true,
meetingInfo: [
// optional
"topic",
"host",
"mn",
"participant",
"dc",
"enctype",
"report",
],
success: (success) => {
ZoomMtg.join({
signature: signature,
sdkKey: process.env.REACT_APP_ZOOM_SDK_KEY,
meetingNumber: meeting.liveSessionDetails.id,
userName: 'Presenter',
passWord: meeting.liveSessionDetails.password,
zak: zak,
success: (success) => {
ZoomMtg.showInviteFunction({
show: false
});
return true;
},
error: (error) => {
return false;
},
});
},
error: (error) => {
return false;
},
});
I have been using this code/meeting SDK past few years, It was working fine from last week onwards this issue is getting after updating to 2.17.0.
Thanks and Regards