Closed buehler closed 2 years ago
Do you have builder.UseAuthentication()
in your pipeline?
var app = builder.Build();
app.UseRouting();
app.UseAuthorization();
app.MapControllers();
await app.RunAsync();
wait.... authentication is not in there. just a sec.
Holy moly. THANK YOU! @brockallen I'm sorry. Should've seen that.
Thank you ;-)
Yea, it's strange that Microsoft throws in the UseAuthorization in their templates, but omit UseAuthetication. It's sort of like "duh". shrug
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue.
Dear developers :-)
Thank you for the introspection auth handler for asp.net. Sadly, I'm experiencing a weird behaviour: I try to use the handler to authenticate against a local "oidc-provider" instance (nodejs). The provider delivers an opaque (reference) token. That's the reason for the oauth2introspection handler.
With the following config:
I only receive the following log messages:
I made the config according to the docs: https://docs.duendesoftware.com/identityserver/v6/apis/aspnetcore/reference/
What did I do wrong? :-)
Could you give any hint where my errors are? Regards