Questions tagged [azure-bot-service]

Questions related to the Azure Bot Service

Tag is used for questions related to the Azure Bot Service (https://azure.microsoft.com/en-us/services/bot-service/)

956 questions
0
votes
1 answer

Azure bot Nodejs Function calls

I am trying to call a dialog in the bot which has to go to specific function, Here is the scenario... I have a dialog bot as shown below bot.dialog('/Welcome', [ function(session){ builder.Prompts.text(session, "Welcome to the Bot"); }, function…
Vinay Jayaram
  • 1,030
  • 9
  • 29
0
votes
2 answers

Microsoft Botframework and LUIS validation of input

I am currently writing a Cortana app using Microsoft's Bot Framework and LUIS for language processing. The goal is to have the user specify a direction and axis for movement. For example: Move Z Axis Up. In LUIS I have this translated with axis and…
0
votes
0 answers

How to measure Latency between client to bot and bot to Client (Not response time)

I have created at bot for slack and deployed to Azure, for this bot I have a client requirement, My client wants to measure latency between slack client to Bot and vice a versa. i.e only time taken by user message to reach to Bot and time taken by…
0
votes
1 answer

Microsoft Azure Bot infinitely multiply messages

This problem occurs only on Telegram Desktop App for MacOS. When a user presses one of any "builder.Prompts.choice" buttons, Bot starts sending message, which is supposed to answer user's choice, infinitely. This problem occured today and there was…
0
votes
2 answers

Azure Bot NodeJS wait for other dialog to be finished

I'm currently building a chatbot with Azure's Bot service. I use a NLU-Bot, mixed with a waterfall flow, because dependent on the intent I want to get some specific information. Therefore I match the intent1 and want to var intents = new…
fsulser
  • 853
  • 2
  • 10
  • 34
0
votes
1 answer

Authorization_RequestDenied Message when creating BOTs

I am creating a bot based on the instruction on this link but I am getting the Authorization_RequestDenied message when submitting. Insufficient privileges to complete the operation. Please check that your account has sufficient access to the…
FRomero
  • 1
  • 1
0
votes
1 answer

whats the workflow of Azure Bot Framework Program (Node.js)?

i)What's the workflow of an Azure Bot Framework Program that is written in Node.js? ii)Does it always include a Dialog to run through? Or is there any other way to run my program without Dialogs?
0
votes
1 answer

Cortana channel - Failed to create bot module

I'm using Azure Bot Channels Registration for my bot, I have working endpoint and bot works well in Web Chat and My settings are: Display Name: Engine Crave Invocation Name: Engine Crave Long Desc, Short Desc etc are all correct and filled and also…
user6847053
0
votes
1 answer

Bad request [400] for Twillio channel in Bot Framework

I was trying to set up a prod and dev environments for my bot app with Twilio channels tied to an Azure Bot when I started getting this error on my prod env. Error: POST to 'https://sms.botframework.com/v3/conversations/..../' failed: [400] Bad…
Dustin
  • 735
  • 1
  • 7
  • 16
0
votes
0 answers

Bot Framework with Table Storage started throwing an exception

Up until two days ago, I have been running the bot framework using Table Storage for my bot data based on this blog post [Saving State data with Bot Builder for Azure][1] As of yesterday, I started getting the following error while running the bot…
NiteLordz
  • 597
  • 2
  • 18
0
votes
2 answers

Azure Bot Service registration is not creating the related Application

I have developed a endpoint to be used for an skype bot but I have not hosted it in Azure so in order to be use skype channel I need registered it using Azure Bot Service (Bot Channels Registration). I did it but when I try create a App Password for…
foxhard
  • 496
  • 4
  • 8
0
votes
1 answer

Azure bot App settings: AzureWebJobsDisableHomepage

Where to find App settings in Azure bot, which was previously migrated from Microsoft bot framework? I want to set variable AzureWebJobsDisableHomepage with value of true.
0
votes
1 answer

How to provide bot AppId in azure bot service

How to provide AppId in Azure Bot service. Going ahead all Microsoft bot framework application will be in Azure bot service. In dev portal of Microsoft bot framework we could provide the app Id while create a Bot application. How can we follow the…
Suba
  • 21
  • 3
0
votes
1 answer

Bot Service Migration Failing Without an Actionable Error

I have an Azure Bot Service, AppServiceDomainChecker, that I am trying to migrate to the new Azure Bot Service platform. I click on the "migrate" button on the Bot Framework site and it starts, but it eventually errors out when copying files to the…
0
votes
2 answers

Bot Framework: How to create a menu in Node.js SDK?

I'm developing a chatbot using Bot Framework and Node.js. My purpose is to guide the user with a Menu. I imagine that the user open the bot and it automatically prompts: " Hi I'm your bot you what are you looking for? - option1 - option2 " Once…