We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e10377f commit 18584fbCopy full SHA for 18584fb
src/content/docs/introspection-auth-handler/index.mdx
@@ -56,7 +56,8 @@ using Duende.AspNetCore.Authentication.OAuth2Introspection;
56
builder.Services.AddAuthentication(OAuth2IntrospectionDefaults.AuthenticationScheme)
57
.AddOAuth2Introspection(options =>
58
{
59
- options.Authority = "https://demo.duendesoftware.com"; // Replace with your authorization server's URL
+ // Replace with your authorization server's URL
60
+ options.Authority = "https://demo.duendesoftware.com";
61
62
options.ClientId = "client_id_for_introspection_endpoint";
63
options.ClientSecret = "client_secret_for_introspection_endpoint";
0 commit comments