How to create zoom meeting API with JWT token in nodeJS

Today i am going to share you how we can create zoom meeting with help of nodejs. In some meeting schedule projects we need to send meeting URL without password so members can join meeting with just a link. So lets start the code.

We need two node js libraries for zoom api.

  1. request-promise
  2. jsonwebtoken

For install these libraries just run these commands:

  1. npm i request-promise
  2. npm i jsonwebtoken

Now you need zoom app jwt API key and token. You can visit developer section in zoom website and create these app details. please follow these steps:

  1. Go to developer zoom account. https://developers.zoom.us/
  2. Now click on BUILD APP button there you need to create your zoom account and you can see this screen after login
  3. Choose JWT and click on create button.
  4. Now you need to add your app details and then you get API secret and token.
  5. And then create JWT token with help of jsonwebtoken and request-promise library
  6. Then pass into this code this is full code how we can create meeting join url with help of Zoom API and node js.
After run this code with help of terminal you can see the result in this form.

OUTPUT

Thanks for reading, Happy learning.

Add a Comment

Your email address will not be published. Required fields are marked *