You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.
The text was updated successfully, but these errors were encountered:
mrbbm
changed the title
Endless loop while manually triggering Identity Server logout Url ?
Endless loop while manually triggering Identity Server logout Url from Browser History?
Sep 15, 2017
Its because, in the custom view the page element will have NULL value. Kindly ensure the page property has any value, if TRUE, load that page otherwise redirect to any custom error page.
protected virtual Task<Stream> Render(CommonViewModel model,string page,string clientId = null)
{
if (string.IsNullOrWhiteSpace(page)) {
page = "Error"; // Custom Error message View
}
// Rest of the code .......
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Question / Issue
I'm having a question, I got a Logout URL from the Browsers History
https://localhost:2025/core/login?signin=a84e5846c781b2bf63619efb97a76b43
The testing team traced this URL and tried to trigger, its causing endless redirects, whats the logic behind in this ? How to fix this ?
Moreover, in the Browsers history, we found the Login URL, it simply shows a blank screen
https://localhost:2025/core/login?signin=a84e5846c781b2bf63619efb97a76b43
How to handle these session-less URL's ?
Kindly assist me in this regards.
The text was updated successfully, but these errors were encountered: