Get "unable to reach app. please try again" message on reply message but not found in post message in channel

Worawit 0 Reputation points
2024-08-16T08:32:27.7166667+00:00

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:

  1. Why it's throw the error with Reply AC but not found in Post AC with the same AC ?
  2. Can i avoid/hide this error message?

AC1

AC2

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"

                }

            }

        ]

    }

]

}

Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
3,319 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.