Get "unable to reach app. please try again" message on reply message but not found in post message in channel
Worawit
0
Reputation points
Hi,
When I make a request from "Reply with an adaptive card in a channel" and choose Yes/No, it gives me "Unable to reach app. Please try again." but not shown on "Post card in a chat or channel".
My question is:
- Why it's throw the error with Reply AC but not found in Post AC with the same AC ?
- Can i avoid/hide this error message?
AC code:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": "Was this reply helpful?",
"wrap": true,
"weight": "Bolder"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Execute",
"title": "Yes",
"id": "FeedbackYes",
"data": {
"msteams": {
"type": "messageBack",
"displayText": "Yes, it helps."
},
"action": "yes",
"cardTypeId": "FeedbackCard"
},
"fallback": {
"type": "Action.Submit",
"title": "Yes"
}
},
{
"type": "Action.Execute",
"title": "No",
"data": {
"msteams": {
"type": "messageBack",
"displayText": "No, I still need help."
},
"action": "no",
"cardTypeId": "FeedbackCard"
},
"fallback": {
"type": "Action.Submit",
"title": "No"
}
}
]
}
]
}
Sign in to answer