Categorygithub.com/our-edu/zoom-lib-golang
repositorypackage
1.0.4
Repository: https://github.com/our-edu/zoom-lib-golang.git
Documentation: pkg.go.dev

# README

Zoom.us Golang Client Library

This package is forked originally from zoom-lib-golang because of problem of upgrading to v2 in their tagging

Go (Golang) client library for the Zoom.us REST API Version 2. See here for Version 1 support.

About

Built out of necessity, this repo will only support select endpoints at first. Hopefully, it will eventually support all Zoom API endpoints.

Tests

To run unit tests and the linter:

./fmtpolice
go test -v ./...

To run the integration tests:

# first, define the required environment variables
export ZOOM_API_KEY="<key>"
export ZOOM_API_SECRET="<secret>"
export ZOOM_EXAMPLE_EMAIL="<account email>"

# then run the tests with the integration build tag
go test -tags integration -v ./...