-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Change visibility of ApiKeyInAuthorizationHeaderHandler #21
Comments
Thanks for your comment @OPSnake. Some explanation/reason for doing so would help. |
I dynamically configure and inject different authentication handlers into a multi-tenant application depending on the client configuration. For that I would need to access the ApiKeyInAuthorizationHeaderHandler class rather than looking for it by relflection |
@OPSnake, please send a code snippet where/how you configure and inject different authentication handlers depending on configuration? Would you be able to use IAuthenticationSchemeProvider to extract Handler type? var schemeProvider = services.GetRequiredService<IAuthenticationSchemeProvider>();
Assert.NotNull(schemeProvider);
var scheme = await schemeProvider.GetDefaultAuthenticateSchemeAsync();
Assert.NotNull(scheme);
Assert.Equal(typeof(ApiKeyInAuthorizationHeaderHandler), scheme.HandlerType); |
Hi @OPSnake, just to let you know that I have changed the visibility of all the handlers to public with new release of the library. Thanks for using the library and your feedback. |
Change visibility of ApiKeyInAuthorizationHeaderHandler to public.
The text was updated successfully, but these errors were encountered: