I receive the following error for the code below:
_hub = new HubConnectionBuilder()
.WithUrl("https://MY_AZURE_FUNCTION.azurewebsites.net/api")
.Build();
await _hub.StartAsync(); // ERROR OCCURRS HERE
'Response status code does not indicate success: 500 (Internal Server Error).'
Log Stream provided the following details:
2021-07-08T16:17:04.786 [Error] Executed 'negotiate' (Failed, Id=dcca623f-f851-4352-a35d-a12567d2f8bb, Duration=26ms)System.InvalidOperationException : The SignalR Service connection string or endpoints are not set.at Microsoft.Azure.WebJobs.Extensions.SignalRService.ServiceManagerStore.<>c.
My Configuration is the following:
Where else would I set the SignalR connection string?