Skip to content

Instantly share code, notes, and snippets.

View manuelandresavalos's full-sized avatar

Manu Avalos manuelandresavalos

View GitHub Profile
@trecno
trecno / bot.gs
Created May 3, 2021 17:18
botDeTelegram.gs
var token = 'TOKEN DE TELEGRAM';
var telegramUrl = 'https://api.telegram.org/bot' + token;
var spreadsheetId = 'ID DEL SPREADSHEET';
function doGet(e) {
return HtmlService.createHtmlOutput('Hola');
}
function sendText(id, answer) {
var url = telegramUrl + '/sendMessage?chat_id=' + id + '&text=' + answer;
@unnikked
unnikked / README.md
Last active June 2, 2025 10:16
How to host your Telegram bot on Google App Script

Telegram Bot on Google App Script

This is the source code of one of my blog post. To read the full blog post please click here.