I have developed a Message Extension Teams app that includes a feature for link unfurling. Upon pasting the link, an adaptive card containing a button shows up in the chat. Generally, I want to popup a dialog that opens upon clicking the button and accepts text from users. But, on clicking the button, I’m getting the error “Return to the main window to perform this action.” How can I fix this issue?
Adaptive Card for unfurling card:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.6",
"body": [
{
"type": "TextBlock",
"text": text,
"wrap": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Login",
"data": {
"msteams": {
"type": "task/fetch"
},
"data": "onLogin"
}
},
]
}
XDeveloper is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.