Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@schoolhouse/zoomapi
Advanced tools
NodeJS library for working with the Zoom API.
zoomapi
provides server-side access to the Zoom APIs via JWT access tokens (deprecation scheduled for June 2023) or server-to-server OAuth. It's written completely in Typescript, and only has one dependency. Works on NodeJS version 8 and higher.
npm i @schoolhouse/zoomapi
# or
yarn add @schoolhouse/zoomapi
import zoomApi from '@schoolhouse/zoomapi';
// JWT app
const client = zoomApi({
apiKey: process.NODE_ENV.ZoomApiKey,
apiSecret: process.NODE_ENV.ZoomApiSecret,
webhookSecretToken: process.NODE_ENV.webhookSecretToken
});
// or Server-to-Server OAuth app
const client = zoomApi({
accountId: process.NODE_ENV.ZoomAccountId,
oauthClientId: process.NODE_ENV.ZoomOAuthClientId,
oauthClientSecret: process.NODE_ENV.ZoomOAuthClientSecret,
webhookSecretToken: process.NODE_ENV.webhookSecretToken,
/**
* optional function called when access token is retrieved
*/
onSetAccessToken: async (token) => {
return await setToken(token);
},
/**
* optional function to explicitly supply an access token,
* instead of fetching a new one
*/
onGetAccessToken: async () => {
return await getToken();
}
});
const users = await client.users.ListUsers();
This library doesn't (yet) implement every API call. PRs are welcome and encouraged.
None yet.
Pull requests are more than welcome! Please follow existing naming and style conventions, and correct any linting errors.
MIT
1.0.1
ListPastMeetingInstances
FAQs
NodeJS library for working with the Zoom API.
We found that @schoolhouse/zoomapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.