Answer the question
In order to leave comments, you need to log in
How to write attachments message handler in telegram bot?
Hello. I am writing a simple telegram bot. There is a small problem. Here is the code:
bot.onText(/\/test/, function(msg) {
const { from: { id } } = msg;
const { text } = msg;
const _bot = bot;
_bot.sendMessage(id, text);
_bot.onText(/(.+)/, function(msg) {
console.log(msg);
_bot.onText(/(.+)/, function() {});
});
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question