I have a custom keyboard but to process the answer i need a force reply so i get the question back in the next message. I have done this:
var opts = {
reply_markup: JSON.stringify({
keyboard: [['OK','Cancel']],
one_time_keyboard: true,
resize_keyboard: true,
force_reply: true
})
};
The keyboard works but not the force_reply. Force reply on its own works? Can i not use it in combination with a custom keyboard?