Closed arieradle closed 8 years ago
The handler contains dependency on System.Web due to a single line of code:
Line 279 in Auth0AuthenticationHandler.cs: var state = HttpUtility.ParseQueryString(context.Request.Query["state"]);
var state = HttpUtility.ParseQueryString(context.Request.Query["state"]);
I think it's possible to use Uri.ParseQueryString
This dependency is redundant, and while it's in place, I'm not sure if this middleware can be used in selfhosting scenarios
I need the exact same thing.
I will look into your issues sometimes next week @arieradle
The handler contains dependency on System.Web due to a single line of code:
Line 279 in Auth0AuthenticationHandler.cs:
var state = HttpUtility.ParseQueryString(context.Request.Query["state"]);
I think it's possible to use Uri.ParseQueryString
This dependency is redundant, and while it's in place, I'm not sure if this middleware can be used in selfhosting scenarios