Categorygithub.com/emaele/rss-telegram-notifier
repositorypackage
1.3.3
Repository: https://github.com/emaele/rss-telegram-notifier.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

RSS Server and Telegram notifier

Receive RSS feed elements directly in a telegram chat!

Installation

Docker

You can run the bot using the provided docker-compose.yml file, change environment variables inside of it following the above table.

Configuration

VarDescription
TELEGRAM_TOKENThis is your telegram token, grab it one from @botfather
TELEGRAM_CHATThis is the telegram chat_id where the posts will be sent
AUTHORIZATION_TOKENAuthorization token for all the http calls

Build it by yourself

Clone the repo, move into the folder and type

go build

Run it

Execute the binary

./rss-server-notifier

How to use it

Authorization

Set the Authorization header with the previous set token.

Add RSS feed

Adding a feed it's pretty easy, just call the /add endpoint with a JSON struct like that:

{
    "URL":"https://feed_url",
    "Filter": "([0-9].*|(regex))" 
}