https://github.com/devalpha18/zoom-lib-golang
Zoom.us client library for Go (Golang)
https://github.com/devalpha18/zoom-lib-golang
api golang sdk sdk-go zoom
Last synced: about 1 year ago
JSON representation
Zoom.us client library for Go (Golang)
- Host: GitHub
- URL: https://github.com/devalpha18/zoom-lib-golang
- Owner: devalpha18
- License: mit
- Created: 2023-01-03T11:36:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-03T11:39:49.000Z (about 3 years ago)
- Last Synced: 2025-02-03T12:14:30.978Z (about 1 year ago)
- Topics: api, golang, sdk, sdk-go, zoom
- Language: Go
- Homepage: https://marketplace.zoom.us/docs/api-reference/zoom-api
- Size: 4.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Zoom.us Golang Client Library
[](https://godoc.org/github.com/zoom-lib-golang/zoom-lib-golang)
[](https://travis-ci.com/zoom-lib-golang/zoom-lib-golang)
[](https://goreportcard.com/report/github.com/zoom-lib-golang/zoom-lib-golang)
[](https://codeclimate.com/github/zoom-lib-golang/zoom-lib-golang/maintainability)
Go (Golang) client library for the [Zoom.us REST API Version
2](https://zoom.github.io/api/). See
[here](https://gopkg.in/zoom-lib-golang/zoom-lib-golang.v1) 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.
### Examples
For example use, see the Godoc documentation or the [examples
directory](_example/)
### Tests
To run unit tests and the linter:
```bash
./fmtpolice
go test -v ./...
```
To run the integration tests:
```bash
# first, define the required environment variables
export ZOOM_API_KEY=""
export ZOOM_API_SECRET=""
export ZOOM_EXAMPLE_EMAIL=""
# then run the tests with the integration build tag
go test -tags integration -v ./...
```
## Contributing
Contributions welcome! Please see the [contributing guidelines](CONTRIBUTING.md) for more details.
## Contact
For any questions regarding this library, please contact [@rafecolton](https://github.com/rafecolton)
Code inspired by [mattbaird/gochimp](https://github.com/mattbaird/gochimp)