MaxxDelusional
MaxxDelusional
I am seeing this too. I set custom headers when creating my hub connection in a Blazor WASM app. ``` hubConnection = new HubConnectionBuilder() .WithUrl(Nav.ToAbsoluteUri("/hub"), (conn) => { conn.Headers.Add("headerName", "headerValue");...
@vicancy where are you reading the headers in your hub? Are they available in OnConnectedAsync? I believe the problem might be caused by web sockets. I am not sure that...
It would also be nice to be able to specify localhost urls as callbacks. It would be helpful for debugging.
This issue seems like a duplicate of #103
There's plenty of code in my bug description that will help you reproduce this issue.
@MartyIX solution did not work. All of the Rectangles are still Green. I also tried using a custom ValueConverter. In doing so, I can verify that my `Cancelled` flag is...
It seems weird to make an extra call to the Graph API, just to grab a value that isn't actually needed, but I understand the desire to keep the SDK...
This is flag as requiring my feedback. In my opinion, I still feel the Graph Client should be able to make a one-to-one call with the Graph API. But it's...
The MSAL package already supports this by allowing you to set the CacheLocation. https://learn.microsoft.com/en-us/dotnet/api/microsoft.authentication.webassembly.msal.models.msalcacheoptions.cachelocation?view=aspnetcore-9.0 I am not sure why the OIDC library can't just do the same thing.