c# - Identity Server 3 logout with PostLogoutRedirectUris having querystring not working -
added postlogoutredirecturis query string, not redirecting after logout, although on clients postlogoutredirecturis mentioned in code.
how allow querystring , redirect user after logout?
trying logout user , land on prepopulated form page.
postlogoutredirecturis = new list<string> { "http://example.com/postlogout?parameter1=¶meter2=", "https://example.com/postlogout?parameter1=¶meter2=" }
the querystring data passed variables through code, above code not work when passing querystring, redirects logout page stops.
Comments
Post a Comment