Hi,
I have updated my Radzen Blazor to 1.58.1 and I must update to .NET 10 my pc.
After do all, I can’t login to my app because the this function of the security service returns no authenticated.
public async Task GetAuthenticationStateAsync()
{
var uri = new Uri($"{navigationManager.BaseUri}Account/CurrentUser");
var response = await httpClient.SendAsync(new HttpRequestMessage(HttpMethod.Post, uri));
return await response.ReadAsync<ApplicationAuthenticationState>();
}
I have another pc with the old version of radzen and this machine can connect without problems.
I’m having the Login Page looping.
Do you know any related issue?
The localhost:5001 is ssl trusted in my navigator.
The funcion public async Task Login(string userName, string password, string redirectUrl) in the AccountController.cs
returns succeed but then it’s returns to login page and there isn’t navigation to the menu.
In the previous version after exit this function then load the page succesfully. It seems a problem with the NavigationManager?
Regards.