Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stahnma/zoom-wh
Notify a slack channel when somebody joins/leaves a zoom meeting.
https://github.com/stahnma/zoom-wh
slack webhooks zoom
Last synced: 26 days ago
JSON representation
Notify a slack channel when somebody joins/leaves a zoom meeting.
- Host: GitHub
- URL: https://github.com/stahnma/zoom-wh
- Owner: stahnma
- License: mit
- Created: 2023-02-28T20:51:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-03-12T00:18:07.000Z (over 1 year ago)
- Last Synced: 2023-04-12T16:22:22.281Z (over 1 year ago)
- Topics: slack, webhooks, zoom
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# What is this?
This is a small program designed to run on a public network that can receive webhooks from zoom for participants joining/leaving a meeting. It then translates those webhooks into webhook calls to slack to notify a specific slack channel about a participant joining or leaving. This was designed to work with long-standing/running meetings.
## Assumptions
1. You have a long-standing zoom meeting that has a constant ID. I use a paid account, I'm not sure if you have to have one or not to do this.
1. You have access/permissions to create a zoom application.
1. You have access/permissions to create a slack webhook integration.# Running Config
you must set
`ZOOM_SECRET` which is the `secret token` provided on your zoom application. This is how zoom knows your webhook listener is the intended target.
`ZOOM_WH_SLACK_WH_URI` is the slack webhook uri.# Building
Checkout the source code
go mod tidy
go build .# Limitations
1. This can currently be set up for one zoom meeting (because there is no logic looking what the meeting is called or anything) and one slack webhook (thus only one channel for notifications). Neither of these would be that difficult to extend or change, but I haven't had that need yet.
1. You can't make the POST URL path anything other than "/" right now. Again, this is an easy fix, but I haven't done it yet. Ideally you could pass in a ENV var for that.# Setup
## Assumptions
1. You have a long-standing zoom meeting that has a constant ID. I use a paid account, I'm not sure if you have to have one or not to do this.
1. You have access/permissions to create a zoom application.
1. You have access/permissions to create a slack webhook integration.
1. You are comfortable putting a service on a public network. (I front mine with a reverse proxy).## Zoom
See [Zoom Documenation](https://github.com/stahnma/zoom-wh/blob/main/docs/zoom_app_creation.md)
## Slack
See [Slack App Documentation](https://github.com/stahnma/zoom-wh/blob/main/docs/slack_integrations.md)
# LICENSE
MIT