How do I get rid of the cookies pop up in the embeded web client using an iframe

Hi @michael_p.zoom I used the iframe

<div class="iframe-container" style="overflow: hidden; padding-top: 56.25%; position: relative;">
    	<iframe allow="microphone; camera" 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>

and got a cookies pop up. Please see attached image.
How do I get rid of the cookies pop up? Thanks
image

Hey @kimi.beulah,

Few solutions here, you could use JavaScript to close the popup programmatically,

Or you could use this meeting url in your iFrame src to bypass that page and go right into the meeting,

<div class="iframe-container" style="overflow: hidden; padding-top: 56.25%; position: relative;">
    	<iframe allow="microphone; camera" style="border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;" src="https://success.zoom.us/wc/{meeting-id}/join?prefer=1&un={base64encodedName}" frameborder="0"></iframe>
</div>

Let me know if this helps!

Thanks,
Tommy

1 Like

Hi Tommy,
How do I find the base64encodedName?
Thanks,
Rick

Hey @rick1, thanks for posting and using Zoom!

The base64encodedName is any name you want your user joining the meeting to have, base 64 encoded.

You can base64encode in any coding language, or do so here:

Let me know if you have additional questions!

Thanks,
Tommy