We are using Zoom Web SDK in our web application. For security reasons, we want to hide the “MeetingId”, “Password”, “APIKey”, and “Signature”. The problem is that all participants can view this information in page source. Please help me with this.
I searched here and found the following article with Solved status.
Disable right click : But still there will be different ways to view the source code.
Generate signature from backend : Zoom always recommend to generate signature from back end. refer here Through this your password will not displayed in client side which is i guess a positive thing
Encrypt all the info in client side
Use object instead of variable in javascript
You can consider all the above point but i still suggest you to take the advise from zoom developer support team.
Right-click disable is not useful people can still view the source.
I am not generating signature client side, the server it passing it to the view. Password is required for “ZoomMtg.join”, can you please explain more about how the password will not display? If without password if possible then I can manage if other properties are visible. The urgency is to hide the password.