1.0.3 • Published 3 years ago

node-zoom-jwt v1.0.3

Weekly downloads
11
License
ISC
Repository
github
Last release
3 years ago

node-zoom-jwt

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

Start by installing the node-zoom-jwt package:

npm i node-zoom-jwt

Add node-zoom-jwt to your file:

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)

Visit the Zoom Marketplace Docs for details on what requests are available and their optional arguments.

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago