2
0
mirror of https://github.com/yagop/node-telegram-bot-api synced 2025-08-29 21:37:58 +00:00

Example of reply_markup

This commit is contained in:
yago 2015-07-07 23:15:58 +02:00
parent d034c6718c
commit f5170c573c

View File

@ -29,8 +29,15 @@ bot.on('message', function (msg) {
bot.forwardMessage(chatId, chatId, messageId);
});
}
if (msg.text == '/help') {
var opts = {reply_to_message_id: msg.message_id};
bot.sendMessage(chatId, 'This is only a test :D', opts);
if (msg.text == '/love') {
var opts = {
reply_to_message_id: msg.message_id,
reply_markup: JSON.stringify({
keyboard: [
['Yes, you are the bot of my life ❤'],
['No, sorry there is another one...']]
})
};
bot.sendMessage(chatId, 'Do you love me?', opts);
}
});