import React from ‘react’;
import ‘./App.css’;
import ZoomMtgEmbedded from ‘@zoom/meetingsdk/embedded’;
function App() {
const client = ZoomMtgEmbedded.createClient();
var authEndpoint = ‘http://localhost:4000’
var sdkKey = ‘uYWmXG1kRvCOA6oQyJhIA’
var meetingNumber = 82142336392
var passWord = ‘jFsq60’
var role = 1
var userName = ‘React’
var userEmail = ‘ajay.blackwolve@gmail.com’
// var registrantToken = ‘’
// var zakToken = ‘’
Have you fixed the issue.
I face the same issue when join other people meeting (other people create a meeting then I join it)
The issue doesn’t happen when I create a meeting and use that number. @chunsiong.zoom Could you please help with that.
I’m using the component view from sample meetingsdk-react-sample and didn’t change anything.
This is my config code
@nmaddp199599 you might want to start a new thread as this might not be the same issue,
If you have problem joining external meetings, there is a high chance they this is due to unpublishing general / meeting SDK app.
General Apps or Meeting SDK Apps which are unpublished can only join meeting which are created by internal users. Any attempts to join externally created meeting will fail.
oh I see, only the users with email registered in user management would be able to join meetings created by one of the users there. It should have been made clear in the documentation.
So @chunsiong.zoom what about joining other people’s meeting? What is required for this to work?
@chunsiong.zoom I don’t think the internal user is a problem.
I cloned the app from here github_com/zoom/sample-app-web.git and set my app’s credential in the code. Now, I have created the meeting from one account, and I could join this meeting without supplying any information about the attendee.
That mean using the same credential, if I use the token generation code from github_com/zoom/meetingsdk-auth-endpoint-sample/blob/master/src/index.js then it doesn’t work.
However if I use the code from here where the token is generated by the sdk then it works?
I compared 2 payloads and they look very similar. I can’t explain why.
For anybody who might stumble into this, I had this same problem and the cause ended up being that the participant email has a + character in it, and the zoom library does not like it. I’m URI escaping it for now.