Azure / azure-functions-signalrservice-extension

Azure Functions bindings for SignalR Service. Project moved to https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService .
MIT License
97 stars 47 forks source link

Bidirectional Example is not sending messages #236

Closed granadytos closed 3 years ago

granadytos commented 3 years ago

When i tried to send a message (as admin or not admin user) i am having an Error: Invocation failed, status code 401 image

Negotiation step is correctly solved image

image

SignalR Service Settings:

-Upstream settings done: image

Function App Settings

image

Y-Sindo commented 3 years ago

Your upstream URL is misconfigured. It should be like <Function_App_URL>/runtime/webhooks/signalr?code=<API_KEY> .

granadytos commented 3 years ago

Thank you i changed the misconfigured settings and it worked. !