I’m creating a telegram bot with Telegram API webhook. I need to handle several messages in a specific order, like this:
client: /order
bot: product name?
client: product name
bot: authorization code?
client: code
bot: order complete
What I have tried: getting /order messageId and the answer would be orderMessage_id + 2 and orderMessage_id + 3. But unfortunately it doesn’t work and bot just sending answers to client without inputs. Can anyone give me advice on how I should handle that?