I am implementing a Zoom Meeting Integration in Client’s Browser using Web SDK.
Everything is working fine. I want to remove “Join Audio By Computer” window from a Meeting. Thus, any attendee would not be able to speak, they are only allowed to join a meeting and listen.
Below is the code I have tried.
<div class="iframe-container" style="overflow: hidden; padding-top: 56.25%; position: relative;">
<iframe allow="camera" allowfullscreen="true" style="border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;" src="https://success.zoom.us/wc/join/{meeting-id}" frameborder="0"></iframe>
</div>
Any help would be great.
Thank You.