Я нашел решение.
Ниже приведены шаги.
В решении для бота добавлена ссылка с использованием HeroCard.
var card = new HeroCard
{
Text = "Click below link to open form",
Buttons = new List<CardAction>
{
new CardAction(ActionTypes.PlayAudio, title: "Request form", value: linkulr),
},
};
- В клиенте Bot отредактируйте файл botchat.js
if(e instanceof o.OpenUrlAction) {
if(e.title="Request Form") //Checking the title
{
OpenPopup(e.url, 'Request Form', 750, 555); //Calling function to open the url in pop up.
}
else
{
window.open(e.url);
}
}