我在Node.js上制作机器人。我有删除键盘的问题。
这是我的信息的样子:
chat_id: *****,
text: '',
reply_markup: JSON.stringify({
ReplyKeyboardRemove: {
remove_keyboard: true
}
})
我收到此消息,但键盘未卸下。
最佳答案
我发现了问题所在。 “文本”不能为空,并且不需要ReplyKeyboardRemove。这是工作代码:
chat_id: *****,
text: 'some text',
reply_markup: JSON.stringify({
remove_keyboard: true
})