[ad_1]
I’m engaged on making a Groups Bot. We’re utilizing the adaptive card in MS Groups Bot. In adaptive card, we used “ActionSet” that accommodates “Motion.Execute”. When the consumer clicks on the motion button we carry out some activity within the bot service and return standing code 200.
It’s working as anticipated within the home windows MS Groups software. However in IOS and Android gadgets I get an error “One thing went unsuitable”.
Please consult with the picture for an error that occurred within the IOS/Android system
error in IOS system
under is the adaptive card json
{
"sort": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"model": "1.4",
"physique": [
{
"type": "TextBlock",
"text": msgText,
"wrap": true,
"weight": "Bolder"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Execute",
"title": "Cancel",
"verb": "Cancel_button"
},
{
"type": "Action.Execute",
"title": btnTitle,
"verb": "updateIncStatus",
"data": {
"statusToUpdate": statusToUpdate
}
}
]
}
]
}
[ad_2]
