How would I create client Web SDK

Hi, I believe you all are doing great. I am a doctor and have an online store of dentist tools. Mostly I have a meeting with my clients and it is tough me to send everyone personally zoom id therefore I want help in clients web SDK so nay one want to join directly by clicking the button on my website ihomedental.com? I have a little bit of knowledge about development just need some help.
I am looking for your responses. Thanks

Hi @jackrobston150,

Welcome to the community.

For this, I’d recommend adding the Web SDK to your website, following the guide located here: https://marketplace.zoom.us/docs/sdk/native-sdks/web/build#integrate

For the meeting details, it depends on how you want the meetings to work. Should these be private 1-on-1 meetings, or public meetings that you don’t mind other people joining?

  1. If it’s a private meeting, I recommend setting up a meeting in Zoom, and then providing the client the ID and password to enter into your website. These details are then used with the Zoom SDK to open the meeting in the browser.

  2. If it’s a public meeting, you can simply enter your personal meeting ID and password into the Zoom SDK, and anyone who clicks the button will join your meeting automatically.

I hope this helps somewhat!

Alex

Hey @jackrobston150,

Thank you for reaching out to the Zoom Developer Forum. Thank you for the assist @alexmayo!

If you wish to embed Zoom on your site or app, you will likely want to use a combination of our APIs (for creating and scheduling live meetings) and our Web SDK (for embedding the Zoom Meeting/video experience on your site/app). Details below on each of these.

API and SDK Overview
We offer both APIs and SDKs for you to consider when planning an integration/implementation in an application. You may find the below information helpful for your web developer.

Here are some APIs that you can consider using within your application:
Create Meetings: To create a meeting (including instant meetings)
List Meetings: To Display the schedule Meetings
Retrieve Meeting: To get a specific meeting

Some additional tips:
Once the meeting is created you can send the “start_url” to the hosts and “join_url” to the participants.
To get a list of past meeting participants, you can use this endpoint.
To display live meetings you can use the meeting started webhook.

To get real-time participant events, please use:
https://marketplace.zoom.us/docs/api-reference/webhook-reference/meeting-events/participant-joined-meeting and
https://marketplace.zoom.us/docs/api-reference/webhook-reference/meeting-events/participant-left

You can find our webhook meeting events here and a list of all our APIs here.

We also have a Web SDK that you can consider integrating into your website:

Authentication Methods
We have two authentication types:

JSON Web Token (JWT):
JWT is an account-wide app and is available to all the admins and owners of the account. You can have only 1 JWT marketplace app registered in your account. You can generate multiple JWT tokens using the JWT keys, and the tokens operate independently of each other until expired or the credentials have been changed.

A JWT token will contain all the permissions, and there is no way to restrict it. A JWT token is only valid for your account.

To know more, please visit: https://marketplace.zoom.us/docs/guides/auth/jwt

OAuth 2.0:
You can use an OAuth App if you want to have limited permissions for your token. To set up access credentials and request scopes for your app, create an OAuth app on the Marketplace. Follow the Create an OAuth App guide for a full walkthrough.
OAuth2 endpoints are located at https://zoom.us/oauth/.

Depending on the App type (Account Level or User Managed), the app needs to be authorized by either the account admin or the user. To know more, please visit: https://marketplace.zoom.us/docs/guides/build#understanding-app-types

I hope that helps! Let me know if you have any questions. :slightly_smiling_face:

Thanks,
Max

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.