I am using Microsoft bot framework, i have requirement to open URL after clicking button. I have achieve that by using Adaptive card. URL is opening in button click. I need to implement confirmation option, when user click on button, pop should come and ask for confirmation of opening the URL. I tried that it is working in emulator but in web it not working. it simply opens the URL without asking the confirmation.
My bot will be used in web.
I have refer https://adaptivecards.io/samples/
below is my code for adaptive card
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"actions": [
{
"type": "Action.OpenUrl",
"title": "Action.OpenUrl",
"url": "https://adaptivecards.io"
}
]
Thanks Sanjeev Gautam