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
2
votes
1 answer

How to suppress and/or increase the 15 seconds timeout message while posting to our messages endpoint? -- Node Js

My bot is based on the bot framework and integrated with many channels, Mainly in the telegram, I am facing this error POST to botName timed out after 15s.. is there any way in the code we can restrict in the code?
Sai
  • 91
  • 1
  • 11
2
votes
1 answer

Azure bot using QnA Maker service doesn't reply in a thread in Slack

Steps to replicate: Create a knowledge base in QnA Maker Save and Publish Create an Azure Web app bot from the QnA Maker portal Add Slack Channel by following…
2
votes
0 answers

Can we customize the bot endpoint given from Bot Framework SDK v4 (.net core)

I am very new to Bot Framework. Is there any possibility to change the endpoint something like https://[domain].azurewebsites.net/api/messages/{customer_id}. I have a reusable code that I want to use it with several bots registered in Azure Bot…
Tanuj
  • 53
  • 1
  • 8
2
votes
2 answers

QnA Maker Bot formatting issue in Teams

We implemented a simple Azure bot using a QnA Maker knowledge base and we enabled the Teams channel. In the webChat, the markdown formatting is rendered just fine. However in Teams the markdown formatting is not always working as expected: If there…
2
votes
0 answers

Deploy a Bot Framework solution using Azure DevOps Pipeline

We have a Bot Framework solution Virtual Assistant which we would like to deploy via an Azure Pipeline connected to GitHub. Due to the Virtual Assistant template we need to run a specific PowerShell Script to achieve this but I'm getting stuck with…
Koxzi
  • 1,021
  • 1
  • 10
  • 21
2
votes
2 answers

ChatBot retrieve data from SharePoint On Premise Issue

I've developed a chatbot that communicates with SharePoint on Premise, When I run the chatbot in Emulator its work. But When I run at Web that hosted outside of SharePoint, it does not work. Herewith my screenshot of Error On Azure, From the result…
Eng Soon Cheah
  • 257
  • 1
  • 10
  • 42
2
votes
2 answers

Unable to login azure bots and get tokens

I am following this doc:https://learn.microsoft.com/en-us/azure/bot-service/bot-builder-authentication everything works well. However,when I test it locally, I cant get access token as doc indicated. See captures below: Any guide is appreciated.…
Jeff L
  • 35
  • 4
2
votes
1 answer

Bot Framework giving Telemetry ArgumentNullException telemetryClient errors

After having a stable 4.5.3 bot with multiple dialogs for sometime now I decided to implement Telemetry. Following the docs and sample core bot I believe I have everything there but I get this error upon a lot of turns, often when replacing or…
pilcrowpipe
  • 2,528
  • 6
  • 29
  • 41
2
votes
1 answer

Bot Emulator Framework Unable to resolve service

I'm following the Azure EchoBot Tutorial for adding states and I was running into an issue running the bot in the Bot Framework Emulator. (The bot can connect. The EchoBot without any modifications will run fine) This is what I added to the…
2
votes
1 answer

Can not get adaptive card value from Json file

I have following Json file { "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.0", "body": [ { "type": "TextBlock", "size": "Medium", "weight": "Bolder", …
Md Farid Uddin Kiron
  • 16,817
  • 3
  • 17
  • 43
2
votes
1 answer

MS Teams: navigate to chat message via link

Does MS Teams provide a possibility to navigate to a specific chat message via the link? For example, I want that after clicking a link my chat scroll to the message pointed by the link. Maybe deep links can help?
2
votes
1 answer

Bot Authentication

I am trying to authenticate user from my bot using azure active directory. I have done all the steps accordingly as per official documentation. Unfortunately,while I run the bot emulator it doesn't prompt user login and anything only shows 401…
Md Farid Uddin Kiron
  • 16,817
  • 3
  • 17
  • 43
2
votes
1 answer

How to send a 'conversationUpdate' to Microsoft Teams from bot manually?

I have a bot written with the help of bot framework v4. The bot is integrated with Microsoft Teams. I want to send a welcome message to the user when the user installed the bot and joins the 1:1 conversation. In Teams the conversationUpdate is fired…
afrischk
  • 348
  • 3
  • 11
2
votes
1 answer

Detect end of conversation and ask for a feedback in azure Bot

I am creating a chat bot using azure bot framework in Nodejs. QnA maker to store question answers and one LUIS app. Now I want to detect end of conversation(either by checking no reply from long time or refreshing a webpage) and add feedback card at…
Tejasvini
  • 21
  • 2
2
votes
0 answers

No response from QnA Maker service in a C# bot

I have a bot in QnA template in C#(SDK v3). I tried to integrate LUIS to QnA Maker service. But bot is unable to reply back to queries. Bot has BasicQnAMakerDialog.cs and LuisDialog.cs files. BasicQnAMakerDialog.cs file code - using System; using…