-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f1cf0f
commit 8989291
Showing
2 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Use of this SDK is subject to our [Terms of Use](https://zoom.us/docs/en-us/zoom | |
## Please note on Jul 20, Chrome 92 will release. Start from chrome92, [SharedArrayBuffer](https://web.dev/coop-coep/) only work for cross-origin isolation. it make WebSDK broken if you don't do any thing when user use Chrome 91. | ||
|
||
1. Apply `SharedArrayBuffers` [origintrials](https://developer.chrome.com/origintrials/#/trials/active) for you domain, it works until Chrome 94 release. | ||
2. Seting you WebSDK/VideoSDK web isolation and update to >= 1.9.5. | ||
2. Seting you WebSDK/VideoSDK web isolation and update to >= 1.9.6. | ||
|
||
Zoom offers a web based HTML5 client that is used in environments where the end users cannot download zoom desktop clients due to internal IT restrictions or in very low bandwidth environments. | ||
|
||
|
@@ -69,35 +69,35 @@ China CDN ```jssdk.zoomus.cn``` | |
### Include the source | ||
|
||
``` | ||
<script src="https://source.zoom.us/zoom-meeting-1.9.5.min.js"></script> | ||
<script src="https://source.zoom.us/zoom-meeting-1.9.6.min.js"></script> | ||
``` | ||
### or | ||
|
||
``` | ||
npm install @zoomus/[email protected].5 | ||
npm install @zoomus/[email protected].6 | ||
``` | ||
### zoomus-jssdk move to @zoomus/websdk | ||
``` | ||
import { ZoomMtg } from 'zoomus-jssdk'; | ||
change to | ||
import { ZoomMtg } from '@zoomus/websdk'; | ||
``` | ||
Please notice, 1.9.5 release with two ways, the normal way and npm way(need babel and webpack). | ||
Please notice, 1.9.6 release with two ways, the normal way and npm way(need babel and webpack). | ||
|
||
At first, you invoke those three API to init jssdk. | ||
``` | ||
console.log('checkSystemRequirements'); | ||
console.log(JSON.stringify(ZoomMtg.checkSystemRequirements())); | ||
// it's option if you want to change the WebSDK dependency link resources. setZoomJSLib must be run at first | ||
// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.9.5/lib', '/av'); // CDN version default | ||
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.9.5/lib', '/av'); // china cdn option | ||
// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.9.6/lib', '/av'); // CDN version default | ||
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.9.6/lib', '/av'); // china cdn option | ||
// ZoomMtg.setZoomJSLib('http://localhost:9999/node_modules/@zoomus/websdk/dist/lib', '/av'); // Local version default, Angular Project change to use cdn version | ||
ZoomMtg.preLoadWasm(); | ||
ZoomMtg.prepareJssdk(); | ||
``` | ||
Go to see sample web app (CDN version) how to update 1.9.5 | ||
Go to see sample web app (CDN version) how to update 1.9.6 | ||
|
||
|
||
[![sample](https://zoom.github.io/sample-app-web/img/participent-joined-meeting.png)]() | ||
|