Create Meeting For Web SDK React JS

Hello,

I am using the react js sample project, i get the error - { method: “join”, status: false, result: “The meeting number is not found.”, errorCode: 3707, errorMessage: “The meeting number is not found.”

Can you let me know how i am supposed to create the meeting number?

Hi @sendtoife ,

Are you working with the meeting SDK or video SDK? The verbiage ‘meeting’ is reserved for the former, while ‘session’ is used for the latter, which prompts my need for clarity.

Hi,

I am using the meeting SDK for react using the sample gotten from github. - github-/zoom/meetingsdk-react-sample

ZoomMtg.init({
leaveUrl: leaveUrl,
patchJsMedia: true,
leaveOnPageUnload: true,
success: (success: unknown) => {
console.log(success);
// can this be async?
ZoomMtg.join({
signature: signature,
sdkKey: sdkKey,
meetingNumber: meetingNumber,
passWord: passWord,
userName: userName,
userEmail: userEmail,
// tk: registrantToken,
// zak: zakToken,
success: (success: unknown) => {
console.log(success);
},
error: (error: unknown) => {
console.log(error);
},
});
},
error: (error: unknown) => {
console.log(error);
},
});

How do you advise I get the meeting number(meetingNumber).

Thank you.

@sendtoife, You can create a meeting number using the Create meeting API:

Hi,

I have tried creating a meeting with the API.

When i try to authorize using my jwt gotten from my marketplace dashboard I get the error below:

{
“code”: 200,
“message”: “Video SDK Account does not support this REST API.”
}

How else can I authorize and make this work for me.

Hope to hear from you soon.

Thank you

It appears you’re using Video SDK credentials instead of Meeting SDK credentials, @sendtoife. Since Video and Meeting are different products, please make sure you’re signing into the Zoom Marketplace with your Meeting SDK credentials. This explains the response you’re seeing.

Here is a comparison for your reference:

Hi,

Do I have to create another account in order to have meeting SDK credentials.

I ask because anytime i login to my zoom marketplace there is no way for me to create any other thing when i click on develop on the top right corner the only option there is build video SDK.

What do you advise that I do?

Thank you.

@sendtoife you will need to create another account to access Meeting SDK, as the current account which you have mentioned is already associated with a Video SDK subscription