I'm using OpenID Connect and OAuth 2.0 to authenticate and authorize users directly against AD FS 4.0. I added my Angular + ASP.NET Core app as Native and Wep API application to Application groups, provided list of Redirect URI for Native app.
When users logout from application they don't redirect to login page. I checked answer ADFS 2016 oAuth not redirecting to login page after logout but in my case id_token_hint and post_Logout_Redirect_Uri are specified:
GET https://<server-name>/adfs/ls/?wa=wsignoutcleanup1.0&id_token_hint=<current_Id_Token>&post_logout_redirect_uri=http://localhost:5000 HTTP/1.1
http:/localhost:5000 is added to list of Redirect URI in native aplication properties. Also no error or warning can be found in adfs logs with enabled tracing.
May I missed something when settings some adfs properties?