An Azure service that provides an integrated environment for bot development.
Same symptons. Removing and re-adding the Teams channel on the Bot Service is what fixed it for me.
Thanks @Karnam Venkata Rajeswari
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I’m using an Azure Bot with the Teams channel enabled. The bot deploys successfully, the messaging endpoint is reachable, and the Azure Bot resource shows Healthy.
When I test the bot using Web Chat, everything works — Azure Bot logs show incoming activity, and my /api/messages endpoint receives the messages.
However, when I send a message to the bot in Microsoft Teams, nothing appears in the Azure Bot logs, and my endpoint is never called. Teams shows the message as sent with a checkmark, and there are no errors in the Teams client or Azure.
What I’ve verified:
• Azure Bot → Healthy
• Teams channel → Enabled
• Messaging endpoint → reachable
• Web Chat → working
• Manifest uses the correct Microsoft App ID
• App installs cleanly in Teams
• Reinstalling the app or readding the team channel in Azure Bot didn't resolve the issue.
• No errors anywhere
The issue:
Teams messages never reach Azure Bot Service, even though Web Chat does. Because of this, Azure Bot logs remain empty for Teams traffic.
My question:
Is there any additional configuration required for an Azure Bot to receive messages from Teams, or any known routing issues where Teams shows messages as sent but Azure Bot never receives them?
How do I start troubleshooting this issue?
An Azure service that provides an integrated environment for bot development.
Same symptons. Removing and re-adding the Teams channel on the Bot Service is what fixed it for me.
Thanks @Karnam Venkata Rajeswari
Hello YT (TFG),
Welcome to Microsoft Q&A .Thank you for reaching out.
The observed behavior indicates that the bot application and hosting endpoint are functioning correctly, as messages sent through Web Chat are successfully delivered and logged. However, messages sent from Microsoft Teams are not reaching the Azure Bot Service at all. This means the issue is occurring before any request reaches the bot endpoint, specifically within the Teams channel routing and authentication flow.
When a message is sent in Teams, the message is first accepted by the Teams client and service. Only after that does it get routed through the Bot Framework connector to Azure Bot Service and then to the bot’s messaging endpoint. In this scenario, Teams shows the message as sent, but the activity is not forwarded further. As a result, no activity appears in Azure Bot logs and the /api/messages endpoint is never called.
As asked if additional configuration required for Teams - No additional hidden configuration is required beyond the documented setup. However, Teams applies stricter validation rules than Web Chat. As a result, a configuration that works in Web Chat may still fail in Teams if any Teams‑specific requirement is not fully aligned.
The most common reasons for Teams messages not reaching Azure Bot Service include:
Please check if the following trouble shooting steps help:
Connect a Bot Framework bot to Microsoft Teams - Bot Service | Microsoft Learn
Microsoft 365 app manifest schema reference | Microsoft Learn
Conversations with a Bot - Teams | Microsoft Learn
Add authentication to a bot in Bot Framework SDK - Bot Service | Microsoft Learn
Troubleshoot bot configuration issues - Bot Service | Microsoft Learn
Thank you !
Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the response was helpful. This will be benefitting other community members who face the same issue.
I think the break is when u never get that first teams conversationUpdate… without it the teams route never comes up, so flip the install scope once and check the token audience, that’s where these silent‑but‑healthy bots usually fail. If it still stays quiet, look at the tenant app‑permission policy blocking bot msgs.