Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luckyyang/meteor-zoom-demo
meteor demo app that use zoom conferencing API
https://github.com/luckyyang/meteor-zoom-demo
Last synced: 21 days ago
JSON representation
meteor demo app that use zoom conferencing API
- Host: GitHub
- URL: https://github.com/luckyyang/meteor-zoom-demo
- Owner: luckyyang
- Created: 2015-09-04T12:36:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-04T12:54:25.000Z (about 9 years ago)
- Last Synced: 2024-10-14T02:19:41.912Z (about 1 month ago)
- Language: JavaScript
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# meteor-zoom-demo
meteor demo app that use zoom conferencing APIYou need change email and password to your own(Sure, you need to sign up at https://zoom.us and download the zoom app ) in `client/zoom/zoom.js`:
```javascript
Zoom.login({email:"[email protected]",password:"yourpassword"},function(result){
$('#btn_login').val("login success");
});
```
Refer to zoom's [API doc](https://support.zoom.us/hc/en-us/articles/204199039-JavaScript-Meeting-API)If you use zoom's official API js file in meteor app, you need to change the js code to let meteor find the `Zoom` definition:
Change the local definition ~~var Zoom~~ to global definition: `window.Zoom`