Skip to content

Instantly share code, notes, and snippets.

@fernyettheplant
Last active October 1, 2017 18:15
Show Gist options
  • Save fernyettheplant/7abf6997b0c6d8f618d3e4e820e89193 to your computer and use it in GitHub Desktop.
Save fernyettheplant/7abf6997b0c6d8f618d3e4e820e89193 to your computer and use it in GitHub Desktop.
Example of a telegram bot responding anything using webtasks
'use strict';
module.exports = (context, cb) => {
const TelegramBot = require('node-telegram-bot-api');
const token = "YOUR_API_TOKEN";
const bot = new TelegramBot(token);
const chatId = context.body.message.chat.id;
const out = bot.sendMessage(chatId, 'Hello World!');
return cb(null, out);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment