Show HN: Push More – Receive Webhook Requests in Telegram
1–10 of 13 posts
Re: Show HN: Push More – Receive Webhook Requests in Telegram
#2I made a simple service that accepts webhook requests and posts them to Telegram. You can interface with the bot directly (@pushmorebot) or add it to a group to have notifications show up there.
You can use it in multiple groups and have different notifications for each.
One caveat right now is that that the webhook URL is visible to anyone in the group so be careful when using it in a public group. (If there's enough interest I'll add some privacy controls.)
Re: Show HN: Push More – Receive Webhook Requests in Telegram
#3No need for an external service and dependency!
Also this approach allows very simple integration into code. I.e. in rust:
pub fn telegram(msg: &str) {
use std::process::Command;
if let Err(e) = Command::new("telegram").arg(msg).status() {
println!("Error occured while calling the telegram command! {:?}", e);
}
}Re: Show HN: Push More – Receive Webhook Requests in Telegram
#4Re: Show HN: Push More – Receive Webhook Requests in Telegram
#5But my boss decided we wouldn't need that, so I stopped working on it. Maybe I can release the code as open source.
Edit: User-configuration was via /command messages for the 1337 kids and clickable buttons for most options (better convenience/less steep learning curve).
Re: Show HN: Push More – Receive Webhook Requests in Telegram
#6could you please escape the whitespace? "hello world" returns me "hello+world" . Also I am trying to configure a nice template on zapier, so I'd need it to reckon "newline\n" last but not least, parse URLs please!
EDIT: looks way better if I send data in JSON instead that raw/form
Re: Show HN: Push More – Receive Webhook Requests in Telegram
#7This kind of feature can easily be implemented by oneself as we described here: https://www.curry-software.com/en/blog/telegram_unit_fail/ No need for an external service and dependency! Also this approach allows very simple integration into code. I.e. in rust: pub fn telegram(msg: &str) { use std::process::Command; if let Err(e) = Command::new("telegram").arg(msg).status() { println!("Error occured while calling the…
There's a case for users without running available endpoints for the hooks. I'd bet those people who also have need for Telegram integration with some 3rd party webhooks are in majority over us.
Re: Show HN: Push More – Receive Webhook Requests in Telegram
#8We switched from Slack to Telegram a few months ago for our team communication at BetaList. Some of our website notifications (new signups, certain errors, etc) still were sent to Slack though through a variety of integrations. I made a simple service that accepts webhook requests and posts them to Telegram. You can interface with the bot directly (@pushmorebot) or add it to a group to have notifications show up ther…
Re: Show HN: Push More – Receive Webhook Requests in Telegram
#9We switched from Slack to Telegram a few months ago for our team communication at BetaList. Some of our website notifications (new signups, certain errors, etc) still were sent to Slack though through a variety of integrations. I made a simple service that accepts webhook requests and posts them to Telegram. You can interface with the bot directly (@pushmorebot) or add it to a group to have notifications show up ther…
Wow, care to elaborate more about the switch from Slack to Telegram? I've been thinking of doing the same with my team, and this webhook feature was exactly what I was going to build. Thanks for releasing this.