Search code examples
pythonpython-3.xbotframeworkchatbotmicrosoft-teams

Is it possible to add a Reaction to a Microsoft Teams message?


I have a Microsoft Teams bot with a message handler:

async def on_message_activity(  # pylint: disable=unused-argument
    self, turn_context: TurnContext
):
    [...]

Lets say the bot receives a message and the bot wants to add a thumbsup reaction to it. I cannot find this in the documentation, is it possible?


Solution

  • Currently, It is not supported for bot to add reactions to a message. You can raise a user voice here.