We are working on a cross-platform bot. We intent to handle smilies in MS Teams. How to handle user entered smilies in MS Teams in bot framework?
1
votes
1 Answers
2
votes
I assume you mean the actions a user can take on a message, like smile/thumbsup/etc. If so, those are called "Reactions" and you can read about it at the bottom of this page: Handle Bot Events.
You don't mention if you're using .net (C#) or Node, but I've put links to a sample for both.
Hope that helps
MessageFactory.Text($" 🙂 😂")
– Wajeed-MSFT