Daniel Schoenbach
Daniel Schoenbach
I recently experienced the Resource Monitor extension causing higher than expected CPU usage on Windows 10. This showed up in Task Manager as usage by Service Host: Windows Management Instrumentation....
```csharp app.UseOAuthAuthorizationServer(new OAuthAuthorizationServerOptions { TokenEndpointPath = "/token" }); ``` ```pwsh irm -Method POST -Body @{ grant_type = "authorization_code" } https://localhost:8080/token ``` This returns 500 instead of 400. `OAuthAuthorizationServerHandler.InvokeTokenEndpointAuthorizationCodeGrantAsync()` triggers an...