1

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

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

我收到此消息,但键盘未移除。

4

1 回答 1

1

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

chat_id: *****,
text: 'some text',
reply_markup: JSON.stringify({
    remove_keyboard: true
})
于 2019-02-26T12:32:01.477 回答