2
0
mirror of https://github.com/yagop/node-telegram-bot-api synced 2025-08-24 19:08:11 +00:00

13 lines
236 B
JavaScript
Raw Normal View History

2015-06-29 00:37:40 +02:00
var TelegramBot = require('../src/telegram');
var options = {
webHook: {
port: 443,
key: __dirname+'/key.pem',
cert: __dirname+'/crt.pem'
}
};
var bot = new TelegramBot('BOTTOKEN', options);
bot.setWebHook('IP:PORT');