Error: Adaptive card Teams: Unable to reach app. Please try again.

Anonymous
2022-01-27T18:04:48.523+00:00

Hi!!

I created adaptive card and posting it to Teams using Power automate.
When user clicks on any of the image which has action “Action.Submit”, it gives error as “Unable to reach app. Please try again.”
Error screenshot:
169097-adaptivecardteams.png

JSON payload for adaptive card:

{  
    "type": "AdaptiveCard",  
    "body": [  
        {  
            "type": "TextBlock",  
            "text": "Howdy!",  
            "weight": "Bolder",  
            "color": "Accent",  
            "size": "Large"  
        },  
        {  
            "type": "TextBlock",  
            "text": "How are you doing today? ",  
            "wrap": true  
        },  
        {  
            "type": "ColumnSet",  
            "columns": [  
                {  
                    "type": "Column",  
                    "width": "stretch",  
                    "items": [  
                        {  
                            "type": "Image",  
                            "url": "https://adaptivecards.io/content/cats/1.png",  
                            "selectAction": {  
                                "type": "Action.Submit",  
                                "data": {  
                                    "rating": "awful",  
                                    "comment": ""  
                                },  
                                "title": "awful"  
                            }  
                        }  
                    ]  
                },  
                {  
                    "type": "Column",  
                    "width": "stretch",  
                    "items": [  
                        {  
                            "type": "Image",  
                            "url": "https://howdy1.blob.core.windows.net/sample/3-removebg-preview.png",  
                            "selectAction": {  
                                "type": "Action.Submit",  
                                "data": {  
                                    "rating": "bad",  
                                    "comment": ""  
                                },  
                                "title": "bad"  
                            }  
                        }  
                    ]  
                },  
                {  
                    "type": "Column",  
                    "width": "stretch",  
                    "items": [  
                        {  
                            "type": "Image",  
                            "url": "https://howdy1.blob.core.windows.net/sample/1-removebg-preview.png",  
                            "selectAction": {  
                                "type": "Action.Submit",  
                                "data": {  
                                    "rating": "ok",  
                                    "comment": ""  
                                },  
                                "title": "ok"  
                            }  
                        }  
                    ]  
                },  
                {  
                    "type": "Column",  
                    "width": "stretch",  
                    "items": [  
                        {  
                            "type": "Image",  
                            "url": "https://howdy1.blob.core.windows.net/sample/5-removebg-preview.png",  
                            "selectAction": {  
                                "type": "Action.Submit",  
                                "data": {  
                                    "rating": "good",  
                                    "comment": ""  
                                },  
                                "title": "good"  
                            }  
                        }  
                    ]  
                },  
                {  
                    "type": "Column",  
                    "width": "stretch",  
                    "items": [  
                        {  
                            "type": "Image",  
                            "url": "https://howdy1.blob.core.windows.net/sample/4-removebg-preview.png",  
                            "selectAction": {  
                                "type": "Action.Submit",  
                                "data": {  
                                    "rating": "terrific",  
                                    "comment": ""  
                                },  
                                "title": "terrific"  
                            }  
                        }  
                    ]  
                }  
            ]  
        },  
        {  
            "type": "Input.Text",  
            "placeholder": "Add a comment",  
            "isMultiline": true,  
            "id": "comment"  
        }  
    ],  
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",  
    "version": "1.3",  
    "actions": [  
        {  
            "type": "Action.Submit",  
            "title": "OK",  
            "data": {  
                "rating": "",  
                "comment": ""  
            }  
        }  
    ]  
}  

Any pointers on what can be the issue about this error is greatly appreciated.

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,295 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Sayali-MSFT 2,496 Reputation points Microsoft Vendor
    2022-02-03T10:14:14.75+00:00

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.