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
2 answers

Sending proactive messages from an outside process to organizational users via Teams chat bot

I have an Azure Bot installed in my organization through Teams. Interactions with the bot are properly functioning. We have a scenario where we need to send notifications to our users from an external process (C# app running in Azure). I attempted…
2
votes
1 answer

How to maintain bot state when using multiple gunicron workers?

I have developed a chatbot using azure bot framework SDK, it is using python aiohttp and asyncio to handle requests. It is deployed on the azure app service and is running through gunicron, but its ability to handle multiple users is low it can only…
2
votes
1 answer

Getting Unable to Connect error on Azure Bot

I have an Azure Bot deployed and running on Directline channel on web page. The bot works well but leaving the bot a few mins idle, results in an error with the message "Unable to connect". I need to refresh the page to restart the bot. How can I…
sachin
  • 43
  • 3
2
votes
1 answer

Is there an issue with Bot Framework Virtual Assistant template when Direct Line App Service Extension is enabled

I have Azure Bot deployed with Virtual Assistant Template, which was working fine (And still working in Portal's Test In Web Chat feature) until I enabled Direct Line App Service Extension. Primary objective to enable DL App Service extension is to…
2
votes
1 answer

Store Bot conversation - Bot Composer

how can I store the messages sent by the Azure bot and the responses of the users in CosmosDB? This was designed in bot composer
2
votes
1 answer

Bot Transcript in Azure Bot Composer

I want to retrieve bot transcript, for bots built using composer , for conversation made till that particular point for a user and send it to an API for downstream processing. Is there a way to retrieve the transcript
Varan
  • 51
  • 1
2
votes
0 answers

How to secure and restrict Azure Bot incoming request when channel is Direct Line

I am looking for solution to secure Azure Bot when the communication channel is Direct Line, The WebChat code is embedded as IFrame in one of internal site and i want the incomming traffic to be restricted to only specific IP/url. There are security…
2
votes
2 answers

Can't access secrets of azure bot I created

I am trying to access the secrets and certificates section of my azure web app bot (configuration > app ID > manage), however, I am repeatedly being blocked from doing so and receiving the message "Insufficient privileges to complete the operation".…
NP2000
  • 45
  • 6
2
votes
1 answer

sharepointonline userphoto.aspx not returning picture with bearer token

I am trying to retrieve the picture of a user within bot code using the following url using a Bearer token https://mytenant.sharepoint.com/_layouts/15/userphoto.aspx?size=S&username=john.doe@mytenant.com When I check via a browser the picture shows…
JakeUT
  • 359
  • 1
  • 4
  • 16
2
votes
1 answer

How can I add a hyperlink in a Azure bot message text

I have recently started creating a Azure Bot in Node js. I want to add a hyperlink in one of the bot response and send a proactive response after user has clicked on it. Something like: Please click this link to complete the payment. and the link…
Saurabh Tiwari
  • 4,632
  • 9
  • 42
  • 82
2
votes
0 answers

Bot framework doesn't return JWT

I'm building an app for Microsoft Teams which requires the user to sign-in inside a bot dialog or message extension. The overall sign-in process works fine. I'm retrieving the token via BotFrameworkAdapter.getUserToken() and if no token is…
2
votes
1 answer

Application Insights shows GET calls while my code does not have any such calls being made

We have integrated Azure Application insights with our bot built using Azure bot framework using node.JS and typescript. Everything looks fine and we can see telemetry data flowing in. In the failures section, we can see Operation name "GET…
2
votes
2 answers

Sending Teams chat message to person/channel from java service

I need to send a Teams message to user/channel from the java service. These are notifications about events that happen in the application (e.g. when someone sells a product, they should receive a message on the teams that the product has been sold).…
2
votes
1 answer

WebChat - Direct Line Speech adapter error: WebSocket connection failed with 400

I have a Bot service running on Azure. I'm trying to voice enable the bot, however I keep getting Websocket connection error. I have the echo-bot running on the server side. I followed this tutorial and I added a Direct Line Speech channel to the…
2
votes
1 answer

Azure Bot Framework Echo Bot NullReferenceException

I just created a new bot with bot framework V4 using the Bot Framework v4 SDK Templates for VS 2019. I created a new Echo bot based on .net core 3.1, when I run it and try to use it with the Emulator, I get an exception right away as…