cancel
Showing results for 
Search instead for 
Did you mean: 
Important updates from Zoom Support:
  • Starting February 3, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to use SMS/MMS capabilities on their numbers.

  • Introducing more live support options! More Zoom customers now have access to live agent chat support. Sign in and visit our Contact Support page to see all your available support options. We’re here to help!

I don't see my camera video in meeting with zoom sdk / reactjs

matheusantonio
Newcomer
Newcomer

When I join the meeting, I can only see the host's camera, I want to see my camera, it's possible?

 

there is a screenshot's meeting

matheusantonio_0-1635442799987.png

there is the way that I use .init

 

ZoomMtg.init({
      leaveUrl: livestreamGuid,
      isSupportAV: true,
      isSupportChat: false,
      debug: true,

      success: (success) => {
        console.log("zoom initiated", success);

        ZoomMtg.join({
          signature: signature,
          meetingNumber: meeting_id,
          userName: me.name,
          apiKey: apiKey,
          passWord: zoom_password,

          success: (success) => {
            console.log("joined", success);

            setIsZoomJoinedSuccess(true);

            let zoomUserId;

            ZoomMtg.getCurrentUser({
              success: ({ result: { currentUser } }) =>
                (zoomUserId = currentUser.userId),
              error: (e) => console.log("error to get user from zoom", e),
            });

            ZoomMtg.mute({
              userId: zoomUserId,
              mute: true,
              success: (e) => console.log("succes to mute user", e),
              error: (e) => console.log("error to mute user ", e),
            });
          },
          error: (error) => {
            console.log(error);
          },
        });
      },
      error: (error) => {
        console.log(error);
      },
    });

 

there is the way that I load zoom libs

 

    ZoomMtg.setZoomJSLib("https://source.zoom.us/1.9.9/lib", "/av");

    ZoomMtg.preLoadWasm();
    ZoomMtg.prepareJssdk();

    ZoomMtg.i18n.load("pt-PT");
    ZoomMtg.i18n.reload("pt-PT");

 

 

2 REPLIES 2

Isaac894
Explorer
Explorer

The meeting maybe is in focus mode, or your laptop isn't available gallery view.

 

umarnazarov
Newcomer
Newcomer

 @matheusantonio

Hi, from where are getting meetingNumber i was working in this project and unable to figure out how to get it. Can you help