Embed Zoom into Website

Hello @tommy

Is there any news about “Gallery view” for Web SDK?
Maybe it will be included in Version 1.8.0?
And when did you plane the 1.8.0 versions release?

Hey @yash.sakali,

Please create a new thread since your post is off topic and does not have enough details.

Thanks,
Tommy

Hey @aivazian.var,

No new about Gallery View yet.

You can see our upcoming changes here:

Thanks,
Tommy

Hi Tommy ,

Is it possible to join a meeting using iFrame directly without Zoom authentication page? I mean with 100% inputs including password required to start a meeting. Because when i am trying it is loading some Zoom page.

Thanks in advance.

Hey @ram24subbu4,

You will need to use the Zoom Web SDK:

Thanks,
Tommy

1 Like

Hi @tommy!

Can you help me with this error please? I’m working on localhost.

My code:

mounted () {
    const self = this;
    const ZoomMtg = this.$ZoomMtg
    // Generate Signature function
    const signature = ZoomMtg.generateSignature({
        meetingNumber: self.meetingId,
        apiKey: 'xxxxxxx',
        apiSecret: 'xxxxxxxxxxx',
        role: 1,
        success: function(res) {
            console.log("success signature: " + res.result);
        }
    });

    const meetingConfig = {
        apiKey: 'xxxxxxxxxxx',
        meetingNumber: self.meetingId,
        userName: (function () {
            return self.nickname
        })(),
        passWord: self.password,
        leaveUrl: "/index.html",
        role: parseInt(1, 10),
        userEmail: (function () {
            return self.email
        })(),
        lang: 'es',
        signature,
        china: false,
    };

    ZoomMtg.init({
        leaveUrl: meetingConfig.leaveUrl,
        webEndpoint: meetingConfig.webEndpoint,
        success: function () {
            ZoomMtg.join({
                meetingNumber: meetingConfig.meetingNumber,
                userName: meetingConfig.userName,
                signature: signature,
                apiKey: meetingConfig.apiKey,
                userEmail: meetingConfig.userEmail,
                passWord: meetingConfig.passWord,
                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);
                },
            });
        },
        error: function (res) {
            console.log(res);
        },
    });
} 

Thanks for advance!

Finally all works, I prepared a litle guide for integrates Zoom on Vuejs, I hope it helps.

2 Likes

Hey @iparra,

Thanks for sharing your guide! :slight_smile:

-Tommy

Hi ,

Zoom ionic SDK have the icon on the top right corner ‘Powered by zoom’.

powered by

is it possible to remove it for the pro user?

Hey @ram24subbu4,

Please post this in #mobile-sdk:ionic

Thanks,
Tommy

Hi tommy, Im also trying to embed my zoom webinar into my website (klickpages), this is the link to enter in the webinar, but I dont know how to embed it on my website, can you help me please?

Hey @irocha.anima,

Please see the solution to this topic:

Thanks,
Tommy

@tommy
Any updates on that?

Hey @gabrielsmelo.dev,

Can you please be more specific? :slight_smile:

Thanks,
Tommy

We are exploring an embeddable Web SDK that can be used with an iFrame embed.

Hi @tommy , you said that a couple months ago. I just would like to know if there are any update related to that! :slight_smile:
Or even a timeline where we can expect to have that functionality.

Hey @gabrielsmelo.dev,

Unfortunately we do not have a timeframe set in stone for this. I will keep you updated.

Thanks,
Tommy

Any updates on that? My Company uses this way to integrate Zoom with our LMS. Too many clients complaining. The alternative way suggested is not an option for our technology.

1 Like

I agree with @tmedal007 . You should really just support iframe because not everyone can install your SDK client.

3 Likes

@tommy @michael.zoom any updates on iframe cause your websdk not support oauth user to start meeting

1 Like

Hi @someone,

Thanks for checking back in on this—we do not have a solid timeline on when this functionality might be further explored, but make sure to check back in on our changelog every now and then to follow along on any new developments!

Best,
Will