I’m using the node-telegram-bot-api module, How can I make my keyboard to inline Keyboard? This is my code:
JavaScript
x
13
13
1
bot.onText(/^/start$/, function (msg) {
2
const opts = {
3
reply_to_message_id: msg.message_id,
4
reply_markup: {
5
resize_keyboard: true,
6
one_time_keyboard: true,
7
keyboard: [ ['Level 1'] ]
8
}
9
};
10
11
bot.sendMessage(msg.chat.id, "I'm a test robot", opts);
12
});
13
Advertisement
Answer
I answered a question similar to this link: How can create menu for telegram bot in bot father?
in your case you could use:
JavaScript
1
2
1
keyboard: [["uno :+1:"],["uno ud83dudc4d", "due"],["uno", "due","tre"],["uno", "due","tre","quattro"]]
2