simple webhook server to emby Telegram notification
Github-repo - https://github.com/Yoas1/emby-telegram-notifier-

1 - Search Botfather in telegram.
2 - Send command /newbot to Botfather.
3 - Give the Telegram bot a name.
4 - Give the Telegram bot a unique username, it must end in "bot".
5 - Save the Telegram bot's access token, we will use it later in the configuration file.
6 - Get your chat ID by starting a chat with your bot, sending a message and then visiting https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getUpdates to find the chat ID in the returned JSON.
1 - Create config.yaml file like example in this repo.
1.1 - You can add admins to get all notification from emby-server.
1.2 - You can add users to get new/delete items from emby-server.
(you can add users while the service is still running)
2 - Run the server with docker/podman:
docker run:
docker run -d --restart=always -v </path/to/config/dir>:/config -p 5000:5000 yoas1/emby-telegram-notifier:v0.3
docker compose:
version: "3.5"
services:
emby-webhook:
container_name: emby-webhook
image: yoas1/emby-telegram-notifier:v0.3
volumes:
- </path/to/config/dir>:/config
ports:
- 5000:5000
restart: always
3 - Create emby notification:
Contributions are welcome! Feel free to open issues or submit pull requests for new features, bug fixes, or improvements.
Content type
Image
Digest
sha256:da375e061…
Size
129.7 MB
Last updated
over 1 year ago
docker pull yoas1/emby-telegram-notifier:v0.3.1