您可以通过两种方式实现这一目标。要么通过
setMyCommands
方法,或/setcommands
命令。我通过添加新框架“Grammy”来创建一个菜单按钮
首先安装格莱美:
npm install grammy
第二次添加此代码:
const { Bot } = require("grammy");
const bot = new Bot(BOT_TOKEN); // <-- place your bot token in this string
创建命令列表:
bot.api.setMyCommands([
{ command: "start", description: "إبدأ من جديد" },
{ command: "help", description: "طلب مساعدة " },
{ command: "list", description: "القائمة " },
]);