Iframe in a Zoom app

Hello Zoom & everyone,

I’m trying to insert an iframe in my Zoom app, the iframe is working well when i put it on the browser, but when i try to put it on the Zoom desktop application, it display just a white box. I’ve already set frameSrc: "https://www.getyellow.io", because of that it’s working on the browser but still not on the Zoom desktop app.

block content
    h1=title
    if isZoom
        iframe(width='660', height='371', src=frameSource)
    else
        p You're viewing your Zoom App through the browser. 
            a(href=`/install`) Click Here
            |  to install your app in Zoom.

And because it’s on the zoom application there is no console to get any error code or message.

When i test it with the following code, it works without any problem on the browser part but the Zoom part still doesn’t work :

block content
    h1=title
    if isZoom
        iframe(width='660', height='371', src=frameSource)
    else
        iframe(width='660', height='371', src=frameSource)

Is there need something to enable a iframe to work on a Zoom App ?

You can use developer console in Zoom Apps/ Zoom Client

Off the bat, I’m guessing you need to add your frame source domain (eg www.getyellow.io) to your Allowed Domains in the app build flow.

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