This package makes it simple to use **Zoom's JSON Web Token** functions with **Node JS**. To use node-zoom-jwt you will need your [APIKey & APISecret](https://marketplace.zoom.us/docs/guides/build/jwt-app)
npm install node-zoom-jwt
const Zoom = require("node-zoom-jwt")
`
Use your APIKey & APISecret to connect to your app:
`
Zoom.connect(
APIKey,
APISecret,
new Date().getTime() + 5000
)
`
The third argument is an expiration for the token. It is highly recommended to set the exp timestamp for a short period, i.e. a matter of seconds. By Default, this value is 5 seconds.
Now you can access the functions provided by Zoom's API through the Zoom object:
`
const meeting = await Zoom.getMeetingInfo(meetingId)
``