Welcome to the Bot Framework SDK for .NET repository, which is the home for the libraries and packages that enable developers to build sophisticated bot applications using .NET.
It worked earlier and suddenly it stopped <-- this is very important.
Our application sends a message on chat during meeting. This message is in form of HeroCard:
var card = new HeroCard()
{
Title = "Helo",
Subtitle = "Subtitle",
Text = "Text",
Buttons = new List<CardAction>()
{
new TaskModuleAction("Verify" new { action = BotMessageActions.Verify })
}
};
When user clicks "verify" button on this hero card, a popup is opened but instead of our application being called, there is a error message: "Could not connect with application. Try again later".
When I tried to do it inside web teams, I was able to track more things. So, there is an invoke request that seems to be send to Teams after clicking the button, with payload:
{
"errorCode": 0,
"message": "<BadSyntax>Malformed AAD token or required field not found",
"standardizedError": {
"errorCode": 201,
"errorSubCode": 1,
"errorDescription": "<BadSyntax>Malformed AAD token or required field not found"
}
}
What is wrong with that? It stopped working suddenly.
Version
4.19.3
Describe the bug
It worked earlier and suddenly it stopped <-- this is very important. Our application sends a message on chat during meeting. This message is in form of HeroCard:
When user clicks "verify" button on this hero card, a popup is opened but instead of our application being called, there is a error message: "Could not connect with application. Try again later".
When I tried to do it inside web teams, I was able to track more things. So, there is an
invoke
request that seems to be send to Teams after clicking the button, with payload:And the response is (code: 400)
What is wrong with that? It stopped working suddenly.