yagop / node-telegram-bot-api

Telegram Bot API for NodeJS
MIT License
8.45k stars 1.53k forks source link

how to implement ChosenInlineResult ? #820

Closed Emperor577 closed 4 years ago

Emperor577 commented 4 years ago

there is an inline query which is show a list of drugs as a result. image

and my question is how to handle the selected item (which has shown above picture)? I looked at the telegram doc and found ChosenInlineResult but I don't know how to implement it? please help me to implement this !!

Emperor577 commented 4 years ago

thanks to GOD. I found the answer this is simple. I have done the following steps:

  1. in @BotFather turn on Inline feedback .
  2. and write this code bot.on('chosen_inline_result', result => { console.log(result); })