2
0
mirror of https://github.com/yagop/node-telegram-bot-api synced 2025-08-23 10:27:49 +00:00

13 lines
272 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'
}
};
2015-06-30 01:42:35 +02:00
var bot = new TelegramBot('BOT_TOKEN', options);
bot.setWebHook('IP:PORT/botBOT_TOKEN', __dirname+'/crt.pem');