From 9ba1e87d666ef4c306a144e41ff032b4a2cc1d89 Mon Sep 17 00:00:00 2001 From: damienbod Date: Thu, 15 Aug 2024 10:59:03 +0200 Subject: [PATCH] fix --- aspnetcore/security/authentication/claims.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/security/authentication/claims.md b/aspnetcore/security/authentication/claims.md index 7a63faf825..85240aff81 100644 --- a/aspnetcore/security/authentication/claims.md +++ b/aspnetcore/security/authentication/claims.md @@ -39,7 +39,7 @@ Another way to get the user claims is to use the OpenID Connect User Info API. T :::moniker range="> aspnetcore-8.0" > [!NOTE] -> The default Open ID Connect handler uses Pushed Authorization Requests (PAR) if the identity provider's discovery document advertises support for PAR. The identity provider's discovery document is usually found at .well-known/openid-configuration. If you cannot update the client configuration on the identity provider, PAR can be disabled by using the **PushedAuthorizationBehavior** option. +> The default Open ID Connect handler uses Pushed Authorization Requests (PAR) if the identity provider's discovery document advertises support for PAR. The identity provider's discovery document is usually found at `.well-known/openid-configuration`. If you cannot use PAR in the client configuration on the identity provider, PAR can be disabled by using the **PushedAuthorizationBehavior** option. :::code language="csharp" source="~/release-notes/aspnetcore-9/samples/PAR/Program.cs" id="snippet_1" highlight="8-99":::