From a1ac0c105415c044c2cbb39850c20de3e6c478a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Tue, 3 Feb 2026 16:16:49 +0100 Subject: [PATCH] Update the obsolete reference to EnableLogoutEndpointPassthrough() --- integrations/aspnet-core.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integrations/aspnet-core.md b/integrations/aspnet-core.md index 46046eb..b13eb9a 100644 --- a/integrations/aspnet-core.md +++ b/integrations/aspnet-core.md @@ -298,21 +298,21 @@ public class ErrorController : Controller > } > ``` -### Authorization and logout request caching +### Authorization and end session request caching To simplify flowing large authorization or logout requests, the OpenIddict server ASP.NET Core integration includes a built-in feature that allows generating a unique `request_uri` and caching the received requests in a request token persisted in OpenIddict's tokens table: when this feature is enabled, an automatic redirection to the current page with the other parameters removed is triggered by OpenIddict and the token entry is redeemed once the authorization or logout demand has been completed by the user. -To enable this feature, you need to use the dedicated `EnableAuthorizationRequestCaching()` and/or `EnableLogoutEndpointPassthrough()` APIs: +To enable this feature, you need to use the dedicated `EnableAuthorizationRequestCaching()` and/or `EnableEndSessionEndpointPassthrough()` APIs: ```csharp services.AddOpenIddict() .AddServer(options => { options.EnableAuthorizationRequestCaching() - .EnableLogoutEndpointPassthrough(); + .EnableEndSessionEndpointPassthrough(); }); ```