I was looking for something like this and could not find anyone, so I made my own, I will write it here, maybe someone will use it.
This is a simple proof of concept that works:
function sendTelegramNotification(botSecret, chatId, body) { var response = UrlFetchApp.fetch("https://api.telegram.org/bot" + botSecret + "/sendMessage?text=" + encodeURIComponent(body) + "&chat_id=" + chatId + "&parse_mode=HTML"); }
Other teams can be made equally.
Mohammed R. El-Khoudary
source share