Skip to content

Instantly share code, notes, and snippets.

@maximlunegov
maximlunegov / Bot.gs
Last active January 10, 2023 11:01
Берёт покупателей и продавцов из списка
// How to connect your Telegram Bot to a Google Spreadsheet (Google Apps Script)
// https://www.youtube.com/watch?v=mKSXd_od4Lg
//
// This code must be added to the Google Apps Script file attached to the spreadsheet script editor.
// Full steps in the readme
const ss = SpreadsheetApp.getActiveSpreadsheet();
var ssId = ss.getId();
const sheet = ss.getSheetByName('Settings');
const token = sheet.getRange('A2').getValue();