This repo is an HTML / CSS / JavaScript website that uses the Zoom Contact Center Apps to integrate a third party app into the Zoom Contact Center desktop interface.
App has reference implementation for:
- Authentication flows: marketplace authentication, Zoom client deep linking
- REST API calls and retrieving user information
- Zoom Apps SDK app context methods
Zoom Apps do not support localhost, and must be served over https. To develop locally, you need to tunnel traffic to this application via https, because the application runs in Docker containers serving traffic from http://localhost. You can use Ngrok to do this. Once installed you may run this command from your terminal:
ngrok http 3000Ngrok will output the origin it has created for your tunnel, eg https://9a20-38-99-100-7.ngrok.io. You'll need to use this across your Zoom App configuration in the Zoom Marketplace (web) build flow (see below).
Please copy the https origin from the Ngrok terminal output and paste it in the PUBLIC_URL value in the .env file.

The Zoom Marketplace build flow for a Zoom App may be found here. You will need a developer account with Zoom Apps enabled. You can create and then update an app using the zcc-app-manifest.json app manifest JSON object:
Create a .env file:
ZOOM_CLIENT_ID=YOUR_CLIENT_ID_HERE
ZOOM_CLIENT_SECRET=YOUR_CLIENT_SECRET_HERE
ZOOM_REDIRECT_URI=https://example.ngrok.app/auth/callback
PORT=3000
⚠️ Do not store credentials in plain text on production environments
npm install
node server.jsThe JavaScript 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 -
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 folder" for the source.
-
Now your project will be deployed to https://GITHUB_USERNAME.github.io/GITHUB_REPO_NAME.
- Deploy the directory to a static web hosting service, like an AWS S3 bucket.
If you're looking for help, try Developer Support or our Developer Forum. Priority support is also available with Premier Developer Support plans.