how can I add Menu button in telegram bot using telegraf
menu button like this
2
I create a menu button by add a new framework " Grammy "
first install grammy : npm install grammy
npm install grammy
seconde add this code :
const { Bot } = require("grammy"); const bot = new Bot(BOT_TOKEN); // <-- place your bot token in this string
create list of commands :
bot.api.setMyCommands([ { command: "start", description: "إبدأ من جديد" }, { command: "help", description: "طلب مساعدة " }, { command: "list", description: "القائمة " }, ]);
You can achieve this in two ways. Either by
setMyCommands
/setcommands
Click here to cancel reply.
2
Answers
I create a menu button by add a new framework " Grammy "
first install grammy :
npm install grammy
seconde add this code :
create list of commands :
You can achieve this in two ways. Either by
setMyCommands
method, or/setcommands
command.