TelegramBotBundle
TelegramBotBundle copied to clipboard
Inline Bot mention handling
Hey! Your work looks really amazing and very helpful, thank you!
Have a question about the development of the inline bot. Is it possible to handle a simple mention of the bot with your stuff? After tagging the inline bot, @myBotName, I need to send messages. But unfortunately didn't find how to implement it.
Thank you!
Did not work with inline bots. Do you check https://core.telegram.org/bots/api#inline-mode and https://core.telegram.org/bots/api#getting-updates? Looks like you can use Update::getInlineQuery method to get mentions and BotApi::answerInlineQuery to send responses
Thanks!