I wanna make a telegram bot game where bot send a message to group then other members can make reactions on this message. Then I enlist those members data and start the game for those members only.
How can I achive this functionality?
I tried
bot.on('message', async (msg) => {
const updates = await bot.getUpdates()
updates.forEach(async (update) => {
console.log(update)
})
})
But using this code I didn’t avail to get reaction updates for messages.