All Questions
Tagged with bot-framework-composer or botframework
9,737 questions
0
votes
0
answers
16
views
Teams bot not receiving messages sent from within Teams
I have a bot that I'm building for Teams. The bot is running in an Azure web app. It sends a welcome message and receives messages fine in the "Test in Web Chat" client within the Azure bot ...
0
votes
0
answers
23
views
How do I send a response back to MS Teams from my bot backend which is hosted in azure App Services
I'm encountering a 401 Unauthorized error when attempting to send a response back to a Microsoft Teams chat from my bot(i haven't used bot framework sdk, simple bot in python).
In my setup, I’m ...
0
votes
0
answers
22
views
Custom Web Chat - bubble nub size getting overloaded on front
I have being using sample Minimizable-web-chat sample on github and added my own customization. I tried adding nub to it but it seems to be overloaded on the chat bubble content. Is there anyway to ...
0
votes
0
answers
16
views
Center the text in Bot Chat bubble
I have developed a chatbot using Microsoft Bot Framework and it has its front end using customizable webchat using Direct line.
Issue : The text given by the bot in the chat-bubble is completely left ...
0
votes
1
answer
34
views
Not able to show the sso dialog in teams bot as nothing happens after begin dialog step
I'm trying to implement sso in my teams bot quite like this example here
https://github.com/OfficeDev/teams-toolkit-samples/tree/dev/bot-sso
But I'm not about to show any dialog or prompt user to sign ...
-1
votes
0
answers
35
views
Deploying a Q&A bot to MS Teams [closed]
I have created a chatbot application on Databricks and served it on an endpoint. I now need to integrate this with MS Teams, including displaying charts and graphs as part of the chatbot response. ...
0
votes
0
answers
22
views
DirectLine Endpoint 'directline/tokens/generate' returning 403 Forbidden Error
I using postman and sending a POST Request to "https://directline.botframework.com/v3/directline/tokens/generate" with Authentication as
"Bearer {Direct_Line_Secret}" and getting ...
0
votes
0
answers
43
views
Adaptive Card filled required fields blocking submit
I have the following adaptive card that is getting rendered by a custom react web chat. When I have required fields they are blocking the submit, even though there are values in the fields.
{
&...
0
votes
0
answers
35
views
Teams message extension - Dialog with an embedded web view NOT shown after returned by OnTeamsMessagingExtensionFetchTaskAsync
We have a demo teams app which has tab, bot and message extension using vs2022 and teams toolkit. According to https://learn.microsoft.com/en-us/microsoftteams/platform/messaging-extensions/how-to/...
0
votes
0
answers
37
views
CLU Key is Invalid of Azure Language Studio
I have been developing chatbots using Microsoft Bot Framework and integrating it with Azure Language Studio, but it seems the format of the key has changed. The key works well in the portal but it ...
-1
votes
0
answers
40
views
Azure Bot service, created using Bot SDK, not working
I created an Azure Bot using the Node.js steps in the docs
The bot worked when using the emulator. In image below, the left side screen (white) is bot emulator. Right side is VS Code running the bot ...
0
votes
0
answers
43
views
Teams bot doesnt seem to receive messages concurrently
I have a teams bot implemented in python using aiohttp. I created an Azure bot, and am using the free version. I am currently testing it as a custom app by importing into my teams. The functionality ...
0
votes
1
answer
86
views
Microsoft Teams Bot: send a message to a Teams User via REST API calls
First off, I'm new to Microsoft Teams (and the larger office/365/azure ecosystem), and have been a bit overwhelmed at the complexity needed to perform what seemed like a simple action. I have a webapp ...
1
vote
0
answers
85
views
Photo uploaded directly from Camera in Microsoft Teams results always as 403
I have a Bot App running in Microsoft Teams. There I have made this bot able to receive files. Everything works fine if I upload a photo as attachment. Request looks like this:
{
"attachments&...
0
votes
0
answers
62
views
How to link feedback to the response message in Teams Bot - Bot Framework SDK
In OnMessageActivityAsync, I am getting an API response, adding feedbackLoop to channelData and calling SendActivityAsync.
var replyText = $" {APIresponse} ";
var seperator = "--------...