zoomusapi
v1.0.10
Published
The simple Zoom.us API Client based on Axios
Downloads
32
Readme
zoomusapi
The Zoom.us api client based on axios lib.
Installation
npm install zoomusapi
Usage
Code examples:
With async/await:
const Zoom = require('zoomusapi')
const Api = new Zoom('API_KEY', 'API_SECRET', 'EXPIRE_TIME_IN_MILLISECONDS')
const app = async () => {
const listMeetings = await Api.listMeetings('[email protected]')
console.log(listMeetings.data)
}
app()
With then chains:
const Zoom = require('zoomusapi')
const Api = new Zoom('API_KEY', 'API_SECRET', 'EXPIRE_TIME_IN_MILLISECONDS')
const app = () => {
Api.listMeetings('[email protected]')
.then(result => {
console.log(result.data)
})
}
app()
All of that cases print object in your console:
{
"page_size": 30,
"total_records": 0,
"next_page_token": "",
"meetings": []
}
Next Features:
- add some methods of zoom api
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
History
2020-07-04: First publish (This is beta. Don't use it)
Credits
Dmitriy Gololobov - general mantainer
License
Apache 2.0