Hi,
just trying to make work link on my project to launch Zoom client using url Schemes as explained in the docs.
Links for atendees to join works,like this:
‘zoommtg://zoom.us/join?confno=xxxxx320464&pwd=xxxxx75&zc=0&uname=’+this.user.nombre;
But cannot make work link for host to start meeting like this:
‘zoommtg://zoom.us/start?confno=xxxxx320464&pwd=xxxxx75&zc=0&stype=100&uid=xxxxx-TLTPOctOEf-xxxxx&token=eJ6sypS9ia-xxxxxxxxxxxxxx.BgUsM0RqZHIzSzQ4eEF2ckNEeTBqV0dLL2FsRDRVaFNpS2hVeGQ3eUVRYWFlcz1AODc4OTFiMmJkYjM0ZjJlZDU3YWZhZmU2ZDUyMDFhMjRmNWIwNmQ3MjA2MTZhYTY4MDc2NDNiOWZjYmZmZGIwYwAgTVJxMThVWko4Z3RNelNqQko4UDJKUzk3RjV1UU81N0sAAA&uname=’+this.user.nombre
It launches Zoom client but:
1.- still asks for the password, even when it is specified in the params list
2.- finally keeps waiting, claiming it is waiting for host to start the meeting…
@gitesh.purbiya22,
Based on my testing, it is not. I can confirm all parameters are correctly supplied except password is not working. Here is my method to test
start meeting with password. zoom client not signed in. prompt for sign in
start meeting with password. zoom client signed in. start meeting successfully.
These two test proves at least other parameters are supplied correctly.
join meeting with password. zoom client not signed in. able to join without prompt for sign in
join meeting with password. zoom client signed in. able to join without prompt for sign in
Furthermore, everything is working fine if using start_url returned from the response.
Same behavior for both Linux and Windows.
you are right, with start_url, which we are getting from response, it is working fine and can start meeting without password prompt. But there is a issue with URL scheme,
Hi @tommy,
“You must be singed into your Zoom Client” - Is it a bug or expected behavior?
If it is an expected behavior, why we have “password” in zoommtg scheme url to start the meeting? eg: Windows/macOS Client: zoommtg://zoom.us/start?confno=123456789&pwd=xxxx
If it is a bug, how should I keep track of the bug status?
Update: Even meeting is created without password, zoommgt is not able to start the meeting. It will behave like join meeting, waiting host to start meeting.
I agree with @tingung.hu and as @gitesh.purbiya22 ask it is not resolved. @tommy helped me with this some days ago and finally suggested me to use start_url.
the point for me was that i did not want any king of redirection such us when you use start_url and that’s why tried to use url schemes.
Did the little trick of using the start_url on an iframe created on the fly, which works perfectly on desktop but not always on mobile devices…
Right. I can change the application to use start_url if it is expected behavior. If it is a bug, I will temporarily switch to start_url and use zoommtg scheme url once bug is fixed.
In browser application, we managed to use iframe to trigger https scheme url and it only prompt to open (no new tab).
However, it doesn’t works in native app (web application running in embedded chrome). Haven’t figure out how to resolve it yet. Waiting the confirmation as bug or expected behavior. If bug, I think I will wait for the fix instead trying to fix in native app.