看起来电报机器人的one_time_keyboard选项根本不起作用。
var opts = {
reply_markup: JSON.stringify({
one_time_keyboard:true,
keyboard: [
['Yes, you are the bot of my life ❤'],
['No, sorry there is another one...']]
})
};
bot.sendMessage(chatId, 'test',opts);
在php和node.js中尝试过。什么都行不通。是否有其他人遇到同样的问题,或者仅仅是我的情况?