botframework

Ambiguous CloudStorageAccount in aspnetcore when used with bot framework

旧城冷巷雨未停 提交于 2019-12-30 14:20:05
问题 I have just upgraded bot framework project which is based on SDK v4 and built using aspnet core and now I end up getting conflict for CloudStorageAccount class. It says The type 'CloudStorageAccount' exists in both 'Microsoft.Azure.Storage.Common, Version=9.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' and 'Microsoft.WindowsAzure.Storage, Version=8.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' Anyone also faced the same issue? Please note that I have already tried to use

Ambiguous CloudStorageAccount in aspnetcore when used with bot framework

為{幸葍}努か 提交于 2019-12-30 14:19:23
问题 I have just upgraded bot framework project which is based on SDK v4 and built using aspnet core and now I end up getting conflict for CloudStorageAccount class. It says The type 'CloudStorageAccount' exists in both 'Microsoft.Azure.Storage.Common, Version=9.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' and 'Microsoft.WindowsAzure.Storage, Version=8.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' Anyone also faced the same issue? Please note that I have already tried to use

UserProfile state persistent between users in bot v4

让人想犯罪 __ 提交于 2019-12-30 13:40:26
问题 When I have two instances of the bot (can be two emulator windows or two browsers if I deploy the bot to Azure), the first name enter is persistent for all the other instances. Instance One https://imgur.com/sa7AAbn Instance Two https://imgur.com/Ct20HE5 I would expect the bot ask my name again, it does not matter how many instances I have, the bot always identifies me as Brunno. How can I change this behavior? I followed this tutorial 回答1: If you don't provide WebChat with a unique id for

botframework on teams channel 1:1 Authentication AAD integrated

会有一股神秘感。 提交于 2019-12-30 08:32:44
问题 I'm looking to connect my bot on teams channel but i didn't know the way to secure this for use only in our domains (organization). I have test to look (authentication AAD) for the Azure Web App but it's doesn't work on teams or on webchat because the endpoint adresse it's not redirected. I have test to implement AUTH card but it doesn't work on teams. Note : I'm using botframework C# api BotBuilder 3.15.2.2 I have look other "ask" like : AAD authentication in Microsoft teams for Bot

Using botbuilder SDK's Prompt.choice(), is it possible to have a custom tooltip which displays long choice-text?

帅比萌擦擦* 提交于 2019-12-29 09:32:11
问题 I am using NodeJS SDK for creating a bot using MSFT botframework. I am giving choice option to user using builder.prompt.choice . Is it possible to hover over the clickable options in case the option values are too long to be completely viewable? The code snippet is as follows. Also the options values are getting fetched at run time, so we do not have any control over the length. function(session, args, next) { builder.Prompts.choice(session, "Please select one of the options:", ['I want to

Using botbuilder SDK's Prompt.choice(), is it possible to have a custom tooltip which displays long choice-text?

爱⌒轻易说出口 提交于 2019-12-29 09:32:10
问题 I am using NodeJS SDK for creating a bot using MSFT botframework. I am giving choice option to user using builder.prompt.choice . Is it possible to hover over the clickable options in case the option values are too long to be completely viewable? The code snippet is as follows. Also the options values are getting fetched at run time, so we do not have any control over the length. function(session, args, next) { builder.Prompts.choice(session, "Please select one of the options:", ['I want to

Using botbuilder SDK's Prompt.choice(), is it possible to have a custom tooltip which displays long choice-text?

那年仲夏 提交于 2019-12-29 09:32:08
问题 I am using NodeJS SDK for creating a bot using MSFT botframework. I am giving choice option to user using builder.prompt.choice . Is it possible to hover over the clickable options in case the option values are too long to be completely viewable? The code snippet is as follows. Also the options values are getting fetched at run time, so we do not have any control over the length. function(session, args, next) { builder.Prompts.choice(session, "Please select one of the options:", ['I want to

How can my Teams bot start a new 1:1 chat with a known user

此生再无相见时 提交于 2019-12-29 09:19:14
问题 I'm working on a Teams bot that needs the ability to start a new 1:1 conversation with a known user (i.e., we know the Teams user ID). I've looked at the "complete-csharp" OfficeDev samples on GitHub (https://github.com/OfficeDev/microsoft-teams-sample-complete-csharp) as well as the Teams-related parts of the Graph API but I don't see any affordance for starting a new conversation. Our goal is to have our bot ping a known user on a schedule by inviting them into a 1:1 chat and requesting

How to add custom choices displayed through Prompt options inside Cards & trigger actions on choice click in BOT V4 using c#?

こ雲淡風輕ζ 提交于 2019-12-29 08:08:51
问题 I am developing a chat bot using c# bot framework v4 sdk with multiple dialogs of waterfall type where one dialog class will display set of choices buttona through Prompt options. Now, I want to know whether these choices in prompt options or the prompt options all together be displayed in a card either hero or rich cards using c# in bot framework v4 I a waterfall dialog. Such that if I select a choice button inside the displayed card the respective option should be triggered in the next step

Query Auto-Completion in c# bot in bot framework

白昼怎懂夜的黑 提交于 2019-12-29 01:51:28
问题 I want to implement autocomplete in my c# bot which i developed using microsoft bot framework and added into my portal as iframe. is it possible to implement query suggestion or query auto-completion in this bot? i tried this solution also Auto complete in Bot Framework but i did not find it helpful for me. can i use jquery auto-completion here ? https://jqueryui.com/autocomplete/ please help me in this. Thanks in advance. 回答1: can i use jquery auto-completion here ? Based on my test, we can