Now, I'm creating Microsoft Teams bot. I started from this sample (https://github.com/microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore/57.teams-conversation-bot) to create bot.
Please see https://github.com/microsoft/BotBuilder-Samples/blob/master/samples/csharp_dotnetcore/57.teams-conversation-bot/Controllers/BotController.cs#L32 this line of code. When I send a message to Bot, Controller invoke Bots by that code.
I think there's a way to get the Request
from the bot through PostAsync, but I can't figure it out.
For example, I want to use Request
at here (https://github.com/microsoft/BotBuilder-Samples/blob/master/samples/csharp_dotnetcore/57.teams-conversation-bot/Bots/TeamsConversationBot.cs)