Share screen shows only loading in 1.9.6

Description
When I click on screen share button preview screen opens with loading in it. On the other side a black screen with green boders are shown.

Browser Console Error
TypeError: e.desktopSharingValue.video.play is not a function

Which Web Meeting SDK version?
1.9.6

Meeting SDK Code Snippets
below are some of my codes
import { ZoomMtg } from “@zoomus/websdk”;

useEffect(() => {
showZoomDIv();
ZoomMtg.setZoomJSLib(“https://source.zoom.us/1.9.6/lib”, “/av”);
ZoomMtg.preLoadWasm();
ZoomMtg.prepareWebSDK();
initiateMeeting();
}, );
const initiateMeeting = () => {
ZoomMtg.init({
leaveUrl: leaveUrl,
isSupportAV: true,
screenShare:true,
success: (success) => {
console.log(success);
ZoomMtg.join({
signature: signature,
meetingNumber: meetingNumber,
userName: userName,
apiKey: apiKey,
userEmail: userEmail,
passWord: passWord,
success: (success) => {
console.log(success);
},
error: (error) => {
console.log(error);
},
});
},
error: (error) => {
console.log(error);
},
});
};

Device (please complete the following information):

  • OS: Windows 10
  • Browser: Chrome
  • Browser Version Version 98.0.4758.82 (Official Build) (64-bit)

Hi @harikrishnanssankar

Thanks for reaching out to the Zoom Developer Forum, are you still experiencing this issue?
Also note that there is a newest version of the Meeting SDK 2.2.0
Feel free to test with our Sample app here:

Best,
Elisa

The issue had been fixed after using SDK 2.2.0
Thank you

1 Like

Glad to hear upgrading the Web SDK resolved the issue, @harikrishnanssankar !

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.