无法使用 ReplyKeyboardRemove 删除 Telegram 键盘

Can't remove Telegram keyboard using ReplyKeyboardRemove

我正在 Node.js 上制作机器人。我在卸下键盘时遇到了问题。 这是我的消息的样子:

chat_id: *****,
text: '',
reply_markup: JSON.stringify({
    ReplyKeyboardRemove: {
        remove_keyboard: true
    }
})

我收到了这条消息,但键盘没有移除。

我找到问题所在了。 'text' 不能为空,不需要 ReplyKeyboardRemove。这是工作代码:

chat_id: *****,
text: 'some text',
reply_markup: JSON.stringify({
    remove_keyboard: true
})