Support
Quality
Security
License
Reuse
kandi has reviewed botframework-sdk and discovered the below as its top functions. This is intended to give you an instant insight into botframework-sdk implemented functionality, and help decide if they suit your requirements.
We track functional issues and features asks for the Bot Framework SDK, tools and Azure Bot Service in a variety of locations. If you have found an issue or have a feature request, please submit an issue to the below repositories.
Teams Bot - get credentials from Key Vault
var storageSecretValue = keyVaultClient.GetSecretAsync($"{this.configuration.GetSection("KeyVault")["BaseURL"]}{this.configuration["KeyVaultStrings:StorageConnection"]}");
Can't get imBack to work on Adaptive Cards that are set up to work with teams
"msteams": {
"type": "imBack",
"value": <value>
}
}
-----------------------
// For directline/webchat
"type": "Action.Submit",
"title": "Get Order Status",
"data": "Get Order Status"
},
// For MS Teams
"type": "Action.Submit",
"title": "Get Order Status",
"data": {
"msteams": {
"type": "imBack",
"value": "Get Order Status"
},
},
if (context.activity.channelId == 'meteams') {
var menuCard = CardHelper.GetMenuCardTeams(cardOptions);
} else {
var menuCard = CardHelper.GetMenuCard(cardOptions);
}
-----------------------
// For directline/webchat
"type": "Action.Submit",
"title": "Get Order Status",
"data": "Get Order Status"
},
// For MS Teams
"type": "Action.Submit",
"title": "Get Order Status",
"data": {
"msteams": {
"type": "imBack",
"value": "Get Order Status"
},
},
if (context.activity.channelId == 'meteams') {
var menuCard = CardHelper.GetMenuCardTeams(cardOptions);
} else {
var menuCard = CardHelper.GetMenuCard(cardOptions);
}
-----------------------
// For directline/webchat
"type": "Action.Submit",
"title": "Get Order Status",
"data": "Get Order Status"
},
// For MS Teams
"type": "Action.Submit",
"title": "Get Order Status",
"data": {
"msteams": {
"type": "imBack",
"value": "Get Order Status"
},
},
if (context.activity.channelId == 'meteams') {
var menuCard = CardHelper.GetMenuCardTeams(cardOptions);
} else {
var menuCard = CardHelper.GetMenuCard(cardOptions);
}
QUESTION
The embeded Hyperlinks & Enlarge Image are not opening in Chrome Browser through MS-Teams Bot
Asked 2022-Feb-16 at 14:41The requirement is printing the FAQ ( QnA Maker result consider as an attachment in Adaptive Card Body ) contents in MS Team Bot ( HR Bot ). The core technology that we are using is C# with ASP.NET Core, Bot Framework SDK.
FAQ Bot Example:
It's a FAQ bot and there are no code changes happening yet for the last two weeks. All these issues were encountered after the chrome latest updates ( Chrome updates).
We have tried the following scenario for the embedded hyperlink issue.
Markdown Syntax in the QnA Maker
Answer Markdown Syntax in the QnA Maker
Note:
Enlarge Image Issue:
We are facing a similar issue mentioned in github.
ANSWER
Answered 2022-Feb-16 at 14:41Adding answer from comment section for visibility:
We checked the embedded hyperlink issue in both Microsoft Teams Desktop client(Version 1.5.00.3276) and web client. The issue is fixed now.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
No vulnerabilities reported
Save this library and start creating your kit
Explore Related Topics
Save this library and start creating your kit