1.0.10 • Published 5 years ago
zoomusapi v1.0.10
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('zoom_user@email.com')
  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('zoom_user@email.com')
    .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