This is the source code of one of my blog post. To read the full blog post please click here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |