azure-bot-service

How can I send the proactive message after 2 min of clicking on GetStarted button in facebook

℡╲_俬逩灬. 提交于 2019-12-24 23:36:11
问题 How can I send the proactive message after 2 min of clicking on GetStarted button in facebook async function getstartedinterval(dialogContext) { timeoutobj= setTimeout(function (dialogContext) { console.log('--- inside setTimeout----',dialogContext);// displaying as undefined notificationMsgGetStarted(dialogContext); },constant.timeinterval); } I have tried with SetTimeOut but DialogContext is not accessible in this function. Please suggest . 来源: https://stackoverflow.com/questions/57949060

Send an image attachment in Microsoft Azure Chatbot

家住魔仙堡 提交于 2019-12-24 09:23:55
问题 I have a created a Chat bot using Microsoft Azure bot service and LUIS. With my bot which was trained on LUIS, I'm able to receive text messages. I have connected the bot to Skype channel. I don't know how to return a image attachment as an answer to a message. I heard some of the Microsoft bot framework can send image as an attachment and I'm not sure about Azure bot service. Sample code: var recognizer = new builder.LuisRecognizer(LuisModelUrl); var intents = new builder.IntentDialog({

ChatBot did not work in Web Emulator but work well in Local Bot Framework emulator

感情迁移 提交于 2019-12-23 10:08:12
问题 The bounty expires in 8 hours . Answers to this question are eligible for a +100 reputation bounty. Eng Soon Cheah is looking for an answer from a reputable source : “The Chatbot is retrieve the data from SharePoint On-Premise. The ChatBot is hosted outside of SharePoint Page.” I developed the ChatBot that integrates with SharePoint On Premise. When I debug the ChatBot in emulator, it work. But When I debug on Web Emulator in Azure and Website Hosted in Company Website by using DirectLine, it

Difference between Functions Bot, Web App Bot & Bot Channels Registration in Microsoft Azure?

荒凉一梦 提交于 2019-12-23 09:39:37
问题 What's the difference? I couldn't find specific information about all three services here or on Microsoft Azure or on Azure Bot Service... 回答1: Function and Web App bots are essentially the same thing. The core difference is that most of the business logic for a functions bot is contained in one or more Azure functions which are c# scripts, while the business logic for a WebApp bot is contained in an WebAPI running as an App Service. Now, a Bot Channels Regstration is an entirely different

.BOT file not getting deployed to Azure Bot Service v4

北慕城南 提交于 2019-12-21 20:36:14
问题 Using Azure Bot Service with C# Bot Builder SDK v4 v4.0.7 (the GA version released September 2018). I'm using the BOT file to store configuration settings for a GenericService and so have changed the BOT file from the default that was provided with the Azure template. Changes were made via MSBOT CLI. When running locally via the emulator, the bot code sees modified local BOT file and all is good. However, the BOT is never deployed to Azure and therefore the Azure service does not see my

Microsoft Azure Bot Framework Emulator is not sending message

梦想的初衷 提交于 2019-12-20 06:41:17
问题 On my Windows 10, I installed Microsoft Azure Bot Framework Emulator from the here (I had used botframework-emulator-setup-4.0.15-alpha.exe from the GitHub link that Microsoft Article provided). But when I run the Emulator, configure a bot and send a text message it says couldn't send (as highlighted in snapshot 3 below: Step 1: Install Emulator Step2: Create a new bot Configuration Step3: Send message 回答1: Install ngrok tunneling. https://github.com/microsoft/botframework-emulator/wiki

Authenticate user in Microsoft bot framework [closed]

匆匆过客 提交于 2019-12-19 09:53:32
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I am building a Banking Bot and I need to authenticate the user before providing any details to him. If the Bot is idle for 5 min, I need user to re-authenticate before proceeding further. I am using Microsoft Bot framework and LUIS for BOT development. Can anyone help me with

Issue in creating bot service in Azure- Error while creating microsoft App id and password

↘锁芯ラ 提交于 2019-12-13 07:58:17
问题 I am trying to create a bot service using Free Trail Subscription in Azure Portal. While clicking on create Microsoft Appid and Password button, it directs to a page. Instead of showing me up with name and id in Generate App ID and password page ,I get the below error as "There's a temporary problem with the service. Please try again. If you continue to get this message, try again later" Could anyone help me out to resolve this error. Also can you confirm if this is due to when a service is

Twilio MMS status is always remains Sent when sent using Bot framework

我的未来我决定 提交于 2019-12-13 03:44:42
问题 I am building a bot for Twilio (SMS) channel. When I send a Simple plain SMS to a number in US, it gets delivered with status in twilio message log as Delivered . But when I attach any image to the message to send MMS, the message never gets delivered, and its status in twilio log remains sent always. Here is how I'm attaching media to MMS. var msg = new builder.Message(session); msg.attachmentLayout(builder.AttachmentLayout.list) msg.attachments([ new builder.HeroCard(session) .title("This

Can't figure out how to generate & view logs for nodeJs bot on Bot Service

情到浓时终转凉″ 提交于 2019-12-12 12:27:55
问题 I deployed my nodeJs bot to Bot Service recently, and i can't seems to figure out how to generate and view it's logs. when i try to enable logging, i constantly getting an unknown error Looking at the log files on the server, there is no file who logs the node application Tried to log to Application insights, without success. help? 回答1: Assuming your bot is hosted through Azure via an App Service, you should be able to see logging from your NodeJS application by performing the following steps