This repo is an Angular app generated via the Angular CLI that uses the Zoom Web SDK to start and join Zoom meetings and webinars.
To get started, clone the repo:
$ git clone https://github.com/zoom/websdk-sample-angular.git
-
Once cloned, navigate to the
websdk-sample-angular
directory:$ cd websdk-sample-angular
-
Then install the dependencies:
$ npm install
-
Open the
websdk-sample-angular
directory in your code editor. -
Open the
src/app/app.component.ts
file, and enter values for the variables:Variable Description signatureEndpoint Required, the endpoint url that returns a signature. Get a signature endpoint here. apiKey Required, your Zoom JWT App API Key. You can get yours here. meetingNumber The Zoom Meeting / webinar number. role Required, 0 to join the meeting / webinar, 1 to start the meeting. leaveUrl Required, the url the user is taken to once the meeting is over. userName Required, A name for the user joining / starting the meeting / webinar. userEmail Optional, the user joining / starting the meeting / webinar. passWord Optional, meeting password. Leave as empty string if the meeting does not require a password. Example:
signatureEndpoint = 'http://localhost:4000' apiKey = 'xu3asdfaJPaA_RJW2-9l5_HAaLA' meetingNumber = '123456789' role = 0 leaveUrl = 'http://localhost:4200' userName = 'Angular' userEmail = '' password = ''
-
Save
app.component.ts
. -
Run the app:
$ ng serve --open
-
Navigate to http://localhost:4200.
-
Click "Join Meeting" to join the meeting number specified in
src/app/app.component.ts
.
The Angular Sample App can be easily deployed to GitHub Pages, or another static web hosting service, like an AWS S3 bucket.
-
Create a repo on GitHub.
-
Add the remote to your project:
$ git remote add origin GITHUB_URL/GITHUB_USERNAME/GITHUB_REPO_NAME.git
-
Open the
angular.json
file and on line 48 replace/
with your GitHub repo name surrounded by slashes like this:/GITHUB_REPO_NAME/
. -
Build your project:
$ ng build --prod
-
Git add, commit, and push your project:
$ git add -A
$ git commit -m "deploying to github"
$ git push origin master
-
On GitHub, in your repo, navigate to the "settings" page, scroll down to the "GitHub Pages" section, and choose the "master branch /docs folder" for the source.
-
Now your project will be deployed to https://GITHUB_USERNAME.github.io/GITHUB_REPO_NAME.
-
Build your project:
$ ng build --prod
-
Deploy the complied
/docs
directory to a static web hosting service, like an AWS S3 bucket.
The first place to look for help is on our Developer Forum, where Zoom Marketplace Developers can ask questions for public answers.
If you can’t find the answer in the Developer Forum or your request requires sensitive information to be relayed, please email us at [email protected].