Zoom Web 1.7.10 - Leave meeting/End Meeting not Working

After upgrade to Zoom WEB 1.7.10, Leave meeting button now working as well as if Host end the meeting,nothing happening from participant end.Still showing host online…(See the screen shot.)

Note: leaveUrl is given properly.

Version: Zoom WEB 1.7.10

Steps to reproduce the behavior:

  1. Join meeting
  2. Click leave meeting from participant end(not working)
  3. Host ended the meeting (no change in participant end)

Error: Following file throws ERR_CERT_AUTHORITY_INVALID

Host left the meeting, But still showing 2 participant with no action.

Hey @rajat.odu, @thendralvanan08,

Can you please share your Web SDK code snippets and steps to reproduce the issue? The leave/end button is working on my end.

Thanks,
Tommy

Hi Tommy,

Thanks for the quick response,
Following code we are using,

Included react.min.js,react-dom.min.js,redux.min.js,redux-thunk.min.js,jquery.min.js,lodash.min.js in my index file.

included src=“https://source.zoom.us/zoom-meeting-1.7.9.min.js”.
let currentUrl = window.location.href;
let API_KEY = data.apikey;
let API_SECRET = data.secretKey;
let meetConfig = {
apiKey: API_KEY,
apiSecret: API_SECRET,
meetingNumber: data.meetingDetails? data.meetingDetails.meetingId : “”,
userName: data.displayName,
passwd: data.meetingDetails? data.meetingDetails.webRtcPassword : “”,
leaveUrl: currentUrl,
role: 0
};
let signature = ZoomMtg.generateSignature({
meetingNumber: meetConfig.meetingNumber,
apiKey: meetConfig.apiKey,
apiSecret: meetConfig.apiSecret,
role: meetConfig.role,
success: function(res){
console.log(res.result);

          }
      });

ZoomMtg.setZoomJSLib(‘https://source.zoom.us/1.7.10/lib’, ‘/av’);
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
ZoomMtg.init({
leaveUrl: meetConfig.leaveUrl,
isSupportAV: true,
success: (success) => {
console.log(success)

          ZoomMtg.join({
            signature: signature,
            meetingNumber: meetConfig.meetingNumber,
            userName: meetConfig.userName,
            apiKey: meetConfig.apiKey,
            passWord: meetConfig.passwd,
            success: (success) => {
              console.log('join meeting success');
              callback("success");                  
            },
            error: (err) => {
              console.log(err);                  
            }
          })

        },
        error: (err) => {
          console.log(err)
        }
      });

Note: when i debug and see, i am properly getting meeting ID, API_key, API_SECRET, leave URL .
Steps to Reproduce:

  1. join meeting - no issues (meeting connected successfully),
  2. click connect audio by computer,
  3. click leave meeting (not working)
    or
  4. Host Ended the meeting(but participant not getting any intimation-still showing as 2 participant as showed in screen shot)

Thanks,
Thendral

Hey @thendralvanan08,

It looks like you are using two different versions of the Web SDK. Can you please try using only one version (1.7.10). Let me know if that fixes the issue. :slight_smile:

Thanks,
Tommy

Its was my mistake when i posted in this forum…in my code i am using 1.7.10.min.js in both the places.

i am seeing following error in my network tab,
https://rwcprod.zoom.us/wc/ping/ — ERR_CERT_AUTHORITY_INVALID

Thanks,
Thendral

Hey @thendralvanan08,

Can you please share your Web SDK code in a github repo so I can debug locally?

Thanks,
Tommy

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