I am switching from twilio to zoom for meeting integration in my react app.
I statically created zoom app with video SDK in react.
I want to implement functionality below.
1). There is one host and other all are the participant.
so basically i provide role to 1 for the host and 0 for the participant.
now i want to make role implementation dynamically.
I tried to generate unique link with role type like https://test.com?role=1
but this is venerable and if user changes the url query then the user has privileges to join as a host and participant.
My previous meeting app is with twilio. In twilio the participant and host is managed by twillio itself. but in Zoom video SDK i am getting similar solution for manage role of the user.
So can you describe how actually role works with dynamic environment or zoom have any functionality for that which will maintain the meeting states
There is one page with zoom client init so whenever user hits the url the client is created and i am unable to know that whose the participant and whose the host.