In microsoft bot framework SDK V3 welcome message gets triggered twiceMS BotBuilder : How can the bot receive parameters and initiate conversation at webchat startMicrosoft Bot Framework - Proactive message, suspend current dialogHow to use Prompts.text without triggering new intent in Microsoft Bot FrameworkMicrosoft Bot: Offline DirectLine GSS Unable to post activity and receive data backHow can I get my bot to post a message to a Microsoft Teams channel?Microsoft Bot displays unnecessary duplicated messages in WebChat?How to Prevent Both beginDialogAction and triggerAction from Executing in Microsoft Bot Builder SDKUnable to use TriggerAction to match with LUIS intent in Microsoft Bot framework (node.js)The second ConversationUpdate event will follow at the back of user first input?How to check the messages posted by the Bot in dialog for Microsoft botbuilder?
What is realistic quality of computer blueprints quickly backed up before apocalypse and their impact on future design?
Password management for kids - what's a good way to start?
Why would one number theorems, propositions and lemmas separately?
Could flaps be raised upward to serve as spoilers / lift dumpers?
Is this popular optical illusion made of a grey-scale image with coloured lines?
IBM mainframe classic executable file formats
Applied Meditation
Is it really a problem to declare that a visitor to the UK is my "girlfriend", in terms of her successfully getting a Standard Visitor visa?
Overprovisioning SSD on ubuntu. How? Ubuntu 19.04 Samsung SSD 860
What's the proper way of indicating that a car has reached its destination during a dialogue?
Checking whether the win-loss standings of a league are possible
How does Asimov's second law deal with contradictory orders from different people?
How to structure presentation to avoid getting questions that will be answered later in the presentation?
Why should I use a big powerstone instead of smaller ones?
Adding a (stair/baby) gate without facing walls
Skipping same old introductions
Using Python in a Bash Script
How to trick a fairly simplistic kill-counter?
Map vs. Table for index-specific operations on 2D arrays
"Will flex for food". What does this phrase mean?
Is it moral to remove/hide certain parts of a photo, as a photographer?
The grades of the students in a class
How to power down external drive safely
How can a class have multiple methods without breaking the single responsibility principle
In microsoft bot framework SDK V3 welcome message gets triggered twice
MS BotBuilder : How can the bot receive parameters and initiate conversation at webchat startMicrosoft Bot Framework - Proactive message, suspend current dialogHow to use Prompts.text without triggering new intent in Microsoft Bot FrameworkMicrosoft Bot: Offline DirectLine GSS Unable to post activity and receive data backHow can I get my bot to post a message to a Microsoft Teams channel?Microsoft Bot displays unnecessary duplicated messages in WebChat?How to Prevent Both beginDialogAction and triggerAction from Executing in Microsoft Bot Builder SDKUnable to use TriggerAction to match with LUIS intent in Microsoft Bot framework (node.js)The second ConversationUpdate event will follow at the back of user first input?How to check the messages posted by the Bot in dialog for Microsoft botbuilder?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.
Thanks in Advance
bot.on('conversationUpdate', function (message)
if (message.membersAdded && message.membersAdded.length > 0)
message.membersAdded.forEach(function (identity)
if (identity.id === message.address.bot.id)
bot.beginDialog(message.address, '/');
);
);
Root Dialog code:
bot.dialog('/', [
function (session)
builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
,
function (session, results)
if (results.response.entity == "yes")
session.send("some text");
else if (results.response.entity == "no")
session.send("some text");
session.beginDialog('/nextDialog');
]);
node.js azure
add a comment |
I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.
Thanks in Advance
bot.on('conversationUpdate', function (message)
if (message.membersAdded && message.membersAdded.length > 0)
message.membersAdded.forEach(function (identity)
if (identity.id === message.address.bot.id)
bot.beginDialog(message.address, '/');
);
);
Root Dialog code:
bot.dialog('/', [
function (session)
builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
,
function (session, results)
if (results.response.entity == "yes")
session.send("some text");
else if (results.response.entity == "no")
session.send("some text");
session.beginDialog('/nextDialog');
]);
node.js azure
add a comment |
I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.
Thanks in Advance
bot.on('conversationUpdate', function (message)
if (message.membersAdded && message.membersAdded.length > 0)
message.membersAdded.forEach(function (identity)
if (identity.id === message.address.bot.id)
bot.beginDialog(message.address, '/');
);
);
Root Dialog code:
bot.dialog('/', [
function (session)
builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
,
function (session, results)
if (results.response.entity == "yes")
session.send("some text");
else if (results.response.entity == "no")
session.send("some text");
session.beginDialog('/nextDialog');
]);
node.js azure
I have a bot where the root dialog is a choice prompt(yes/no) which I want to show the user when the bot starts. Below are the code snippets for conversationUpdate and the root dialog. The issue here is when the user clicks yes or no in the root dialog i.e welcome message, the root dialog is triggered second time and it again asks the user to click yes or no. After that the bot is continuing its normal flow but I want the root dialog to trigger only once.
Thanks in Advance
bot.on('conversationUpdate', function (message)
if (message.membersAdded && message.membersAdded.length > 0)
message.membersAdded.forEach(function (identity)
if (identity.id === message.address.bot.id)
bot.beginDialog(message.address, '/');
);
);
Root Dialog code:
bot.dialog('/', [
function (session)
builder.Prompts.choice(session,"some text", ["yes", "no"], listStyle: builder.ListStyle.button );
,
function (session, results)
if (results.response.entity == "yes")
session.send("some text");
else if (results.response.entity == "no")
session.send("some text");
session.beginDialog('/nextDialog');
]);
node.js azure
node.js azure
edited Mar 27 at 14:36
sarat
asked Mar 26 at 23:50
saratsarat
606 bronze badges
606 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This seems to be a known issue
https://github.com/Microsoft/BotBuilder/issues/4387
Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.
– sarat
Mar 27 at 15:49
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367807%2fin-microsoft-bot-framework-sdk-v3-welcome-message-gets-triggered-twice%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This seems to be a known issue
https://github.com/Microsoft/BotBuilder/issues/4387
Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.
– sarat
Mar 27 at 15:49
add a comment |
This seems to be a known issue
https://github.com/Microsoft/BotBuilder/issues/4387
Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.
– sarat
Mar 27 at 15:49
add a comment |
This seems to be a known issue
https://github.com/Microsoft/BotBuilder/issues/4387
This seems to be a known issue
https://github.com/Microsoft/BotBuilder/issues/4387
answered Mar 27 at 14:54
Hainan.ZHainan.Z
5614 silver badges9 bronze badges
5614 silver badges9 bronze badges
Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.
– sarat
Mar 27 at 15:49
add a comment |
Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.
– sarat
Mar 27 at 15:49
Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.
– sarat
Mar 27 at 15:49
Thanks @Zhao. I followed the thread you have shared and they mentioned an workaround in this link https://github.com/Microsoft/BotBuilder/issues/4245. I used that workaround any my bot is working as expected.
– sarat
Mar 27 at 15:49
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367807%2fin-microsoft-bot-framework-sdk-v3-welcome-message-gets-triggered-twice%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown