└── sd /sd: -------------------------------------------------------------------------------- 1 | function start() { 2 | let webAppUrl = 'https://script.google.com/macros/s/.../exec'; 3 | let url = `https://api.telegram.org/bot${token}/setWebhook?url=${webAppUrl}`; 4 | let resp = UrlFetchApp.fetch(url); 5 | console.log(resp.getContentText()); 6 | } 7 | //comming soon 8 | --------------------------------------------------------------------------------