I'm building an ASP.Net Core 2 PoC for some authentication/authorization discussions/decisions that we need to make.
I'm currently at a point where a user has just defined a new OpenID Provider that this application wants to support.
One way to support this would be to read all of the configured providers during startup and configure them all inside ConfigureServices
. But there are tantalising clues that it's also possible to do this without having to kill and restart the app.
IAuthenticationSchemeProvider
has an AddScheme
method that looks ideal. Now all I need to do is to construct an AuthenticationScheme
object and I'm golden. It has a constructor AuthenticationScheme(string name, string displayName, Type handlerType)
But I'm not sure how to use the types correctly from Microsoft.AspNetCore.Authentication.OpenIdConnect
to correctly construct this object and to allow me to specify the OpenID Connect specific options for this.
I think the type I want to use for the third parameter is OpenIdConnectHandler
. But what do I do with my options? (Or in the alternative - how do I get to do the equivalent of being able to supply an Action<OpenIdConnectOptions>
delegate)
I found this github issue which is also of interest (no TryAddScheme
method, so exceptions are possible, interesting in the abstract if we choose to persue this PoC further) but the small sample doesn't talk about options at all.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…