Gramjs button example
Anonymous
typescript
06/25/2023 4:39 PM
388 B
79
Indexable
const options = ["About Me", "Help", "Close"];
const messageWithButton = await bot.sendMessage(chatId, {
message: "Please select one option",
buttons: bot.buildReplyMarkup(
options.map((option) => {
return [Button.inline(option, `callback data ${option}`)];
})
),
});
Editor is loading...