Подскажите, пожалуйста, как мне поставить на самого простого бота вебхук? Вот такой код не работает.
const Telegraf = require('telegraf')
const fs = require('fs')
const app = new Telegraf('<token>')
const sslOptions = {
key: fs.readFileSync('webhook_pkey.pem'),
cert: fs.readFileSync('webhook_cert.pem'),
};
app.command('start', ({ from, reply }) => {
return reply('Welcome!')
})
app.telegram.setWebhook('https://5.125.253.80:8443', {
cert: 'webhook_cert.pem'
})
app.startWebhook(`/hello`, sslOptions, 8443);
cert: 'webhook_cert.pem' <- вот тут ошибка
Обсуждают сегодня