I've configured an outgoing webhook in Microsoft Teams, but @mentioning the webhook name doesn't appear to send a request to the url I've configured.
I have a simple NodeJS server logging all network requests to that endpoint, and I've verified that the url is correct. I've even verified that I can manually send the HTTP POST request to my endpoint the same way the outgoing webhook documentation says to expect it.
In case this might affect anything, the webhook name has spaces in it (my endpoint url does not). My outgoing webhook configuration is similar to the following:
- Name: Webhook Name
- Callback URL: https://subdomain.example.com/endpoint
- Description: A simple description.
What might I be missing?
sharedSecret
value in the code which you receive after outgoing webhook configuration. - Wajeed-MSFTsharedSecret
. Yet there's still no apparent response when the outgoing webhook is mentioned. Afterward, I made a POST request to the endpoint myself and did receive the response{ "type": "message", "text": "Error: message sender cannot be authenticated." }
. What should I check from here? - Peter Cassetta