RedirectUri is always null when signing out from MVC app #90
-
| IdentityServer version7 .NET version8 DescriptionOn the IdentityServer side running locally, the RedirectUri is always null when making the following call from a client mvc app. Here is the Logout action method in the mvc client app: Please note, I do not want to specify the PostLogoutRedirectUris property in the Client configurations on the server side Reproduction stepsNo response Expected behaviorNo response LogsNo response Additional contextNo response | 
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
| I'm afraid it is not possible to do this without setting  | 
Beta Was this translation helpful? Give feedback.
I'm afraid it is not possible to do this without setting
PostLogoutRedirectUris. The protocol demands a way to verify the logout redirect uri just like the redirecturi for the login process needs to be checked with the configuration of the client.Keep in mind that when using ASP.NET Core that logout uri is not the one you specify in the
AuthenticationPropertiesbut the one setup by the authentication middleware. By default: /signout-callback-oidc