hi
Can your web app get the access token from the auth server?
Login(web app) => redirect to authserver => login by username and password => redirect to your web app
Thanks.
Thanks, I wll check it asap
hi
when backend throw an UserFriendlyException,
Can you share your backend code?
Can you check your HTTP call response in Chrome Network Panel? What are response headers and body?
Thanks.
Great 👍
hi
I haven't received it. Can you share it by https://wetransfer.com/
Thanks.
Thanks. Our suite team will check this.
ok, that will be best.
hi
Could you share a project that reproduces the UI problem?
Your problem is about UI. Use the code to change it is the wrong way.
Thanks.
hi
Is the build error caused by the Suite?
Thanks.
hi
The base class will call the GetRedirectUrlAsync.
Can you debug to check if your returnUrl is set correctly?
Thanks.
[HttpGet]
public virtual async Task<ActionResult> LogoutAsync(string returnUrl = "", string returnUrlHash = "")
{
await HttpContext.SignOutAsync();
if (HttpContext.User.Identity?.AuthenticationType == AuthenticationType)
{
return await RedirectSafelyAsync(returnUrl, returnUrlHash);
}
return SignOut(new AuthenticationProperties { RedirectUri = await GetRedirectUrlAsync(returnUrl, returnUrlHash) }, ChallengeAuthenticationSchemas);
}