https://github.com/com8/teams-hook
A hook program forwarding incoming Microsft Teams websocket messages to all subscribed clients.
https://github.com/com8/teams-hook
go ms-teams websocket
Last synced: about 2 months ago
JSON representation
A hook program forwarding incoming Microsft Teams websocket messages to all subscribed clients.
- Host: GitHub
- URL: https://github.com/com8/teams-hook
- Owner: COM8
- License: gpl-3.0
- Created: 2023-04-14T17:39:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-08T13:23:12.000Z (almost 2 years ago)
- Last Synced: 2025-02-02T00:27:39.430Z (4 months ago)
- Topics: go, ms-teams, websocket
- Language: Go
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Teams Hook
A hook program that forwards incoming Microsoft Teams websocket messages to all subscribed clients.
The source of those notifications is the [Teams Hook Client](https://github.com/COM8/teams-client-hook) Microsoft Edge extension that forwards all incoming websocket messages to this WebHook.## Development
## Self-Signed CertificateTo create a temporary self-signed certificate run the following command.
```bash
openssl req -new -x509 -nodes -newkey ec:<(openssl ecparam -name secp384r1) -keyout cert.key -out cert.crt -days 3650
```