Meeing SDK embedding not working correctly

Description
Hi, so I need help. I have to embed zoom into my website and then auto record and store the recorded video. It is an e-learning website to conduct live classes between teachers and students. I want to make it as realistic and userf riendly as possible. Can someone please help. Thank you. Also, right now, in my code to embed client view, when i run it, the local host gives me nothing. Just a blank screen. When i comment all the Zoom Mtg statements, the frontend works but i cant create and join meeting, of course. Would l really appreciate some help. Thank youu

Browser Console Error
Blank Screen

Which Web Meeting SDK version?
3.13.2, web sdk is 2.18.3

Meeting SDK Code Snippets
import React, { useEffect, useState } from ‘react’;

import { ZoomMtg } from ‘@zoomus/websdk’;

import axios from ‘axios’;

import ‘./zoom.css’;

ZoomMtg.preLoadWasm();

ZoomMtg.prepareWebSDK();

ZoomMtg.i18n.load(‘en-US’);

ZoomMtg.i18n.reload(‘en-US’);

Device (please complete the following information):

  • Device: Dell Windows laptop]
  • OS: [Windows 11 pro ]
  • Browser: [Chrome]
  • Browser Version [137.0.7151.55/56]

Additional context
I create a general App in zoom marketplace and toggled on meeting sdk in embed. Now im using client id and secret itself as the sdk key and secret. i hope that is right

Hey @Meghna,

Your setup using a General App with the meeting SDK enabled sounds correct, so it’s likely an issue with how you’re initializing the meeting through the SDK.

It’s hard to say what the specific error is without additional info, but you should be able to get the error message from the browser console. To do this you can open devtools in your browser and inspect the “Console” tab.

Can you take a look there and see what the error messages say?

I would also recommend viewing the client view example in the Web Meeting SDK in the SDK reference here, to see if there are any differences with your own implementation.

1 Like

Hi, thank you so much, I have figured it out. I am able to embed zoom in my website now. Now, I want to schedule regular recurring meetings and is it possible to auto launch them, without the host manually joining? Because, one person is required to use the desktop zoom app instead of the embedded for the recording. I would not prefer to have a person manually joining every session as it is not feasible. Recording, i believe once i have the host desktop app account, I can just enable auto record.
Really appreciate your reply though. Thank you so much !!