An Azure service that provides an integrated environment for bot development.
I think you use the bot’s public HTTPS URL that receives Bot Framework POSTs, and the SDK’s default path is https://<host>/api/messages.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
what endpoint format does it expects behind that Messaging Endpoint field
An Azure service that provides an integrated environment for bot development.
I think you use the bot’s public HTTPS URL that receives Bot Framework POSTs, and the SDK’s default path is https://<host>/api/messages.
AI answer
Azure Bot Service typically expects the messaging endpoint to be the bot application's web endpoint with /api/messages appended.
Example format:
https://<your-bot-hostname>/api/messages
In Azure portal:
/api/messages.In the SDK/API surface, this endpoint is represented as the bot's Endpoint property.
References: