Ask host to confirm before starting a recording setting not working as expected

Hiding the recording Popup for Host account,

this check is unchecked still confirmation popup is appearing on Host side

We are using meeting SDK with Component View

Even this option is Uncheck in setting they are still seeing the confirmation popup like below

Hi @qasatti
Thanks for reaching out to us.
Are you still experiencing this issue?

Hi @elisa.zoom ,

Yes I am still facing this issue, Unable to find any way to completely remove the recording Confirmation Popup on host side

You are using the meeting SDK component view, correct?

Yes, we are using meeting SDK component view

Thanks @qasatti
I will go ahead and do some testing on my end and will get back to you

Hi @qasatti
I am not able to replicate this issue with the sample app

I have the same settings in my account and when starting the meeting as a host, i do not get any popup
could you please try and replicate this with the sample app I shared

Hi @elisa.zoom
we can Schedule a Call, I will show you how to reproduce it,

Hi @qasatti
I will go ahead and send you a private message

HI @elisa.zoom ,
We are facing little opposite issue. We have “enabled” this setting for getting confirmation from host. But we are not seeing the popup at the host end.

I am able to reproduce this issue with zoom’s web sample app GitHub - zoom/meetingsdk-web-sample: Zoom Meeting SDK web sample as well when I try to use Zak token of a meeting attendee which was authenticated on my meeting SDK app.

Client/Component View
Client view

Meeting SDK for web version
2.16.0

Code Snippet

      ZoomMtg.join({
        meetingNumber: meetingConfig.meetingNumber,
        userName: meetingConfig.userName,
        signature: signature,
        sdkKey: meetingConfig.sdkKey,
        userEmail: meetingConfig.userEmail,
        passWord: meetingConfig.passWord,
        zak: get_zak_token_of_meeting_attendee(),
        success: function (res) {
          console.log("join meeting success");
          console.log("get attendeelist");
          ZoomMtg.getAttendeeslist({});
          ZoomMtg.getCurrentUser({
            success: function (res) {
              console.log("success getCurrentUser", res.result.currentUser);
            },
          });
        },
        error: function (res) {
          console.log(res);
        },
      });

Browser Console Error

{"method":"mediaCapturePermission","status":false,"errorCode":1,"errorMessage":"not support grant local record permissin","result":null}

Use of Zak Token of meeting attendee: Yes

Result:
Bot is able to join the meeting, but Host is not seeing any option/popup to grant local recording permission to our bot to record.

This is important for compliance requirements for implementing bot as a meeting participant. Can you please help us on this issue. Happy to discuss this over a call if it works for you !!

We were able to get it working after Zoom released 2.16.0 version of meeting sdk. FYR original thread here.

Thanks for sharing this with the community @deepak.babel

1 Like