I have a web App that has integrated Zoom SDK.
Previously we used to prompt users to input meeting ID and password but that was quite inconvenient. So we started to paas the meeting ID, password and name as parameters that would allow people to join directly through the url and there is no hassle of putting in the meeting ID and password.
So our url looks like this https://{our app domain}/zoom/class?name=Gokul&mn={meeting number}&pwd={password}
And it worked like this :
But if in the meeting id and password we put the id password of a registered meeting, instead of joining the meeting, it asks for registration.
And then the link we get after registration has some additional parameters like “tk”. And even after registering. In my app it again asks for registration.
What can I do to allow my users to join a registered meeting directly by the url?
Thanks!

