I have made some others tests:
- Pixel Identity correctly running
- Sample.Service.Api correctly running
- Samples.Blazor.App correctly running
- Login in Pixel Identity with user A
- Reloading Sample.Blazor.App I'm correctly logged in with user A
- Now I logout from Sample.Blazor.App
- THE ISSUE: in Pixel Identity (I not reload page where I'm already logged) seem that I'm still logged as user A but if I click on any nav menu link I receive an error (MudBlazor Red Alert in the upper right corner) with message:
'<' is an invalid start of a value. Path: $ | LineNumber: 1 | BytePositionInLine: 0.
Inspecting http calls, for example clicking on Account > profile link menu, there is a call to
https://localhost:44382/pauth/api/users/name/**USERNAME**
that response 302 redirect to
https://localhost:44382/pauth/Identity/Account/Login?ReturnUrl=%2Fpauth%2Fapi%2Fusers%2Fname%2F**USERNAME**
and this request response 200 OK with HTML content.
There is something wrong that I have done? Thank you.
I have made some others tests:
'<' is an invalid start of a value. Path: $ | LineNumber: 1 | BytePositionInLine: 0.Inspecting http calls, for example clicking on Account > profile link menu, there is a call to
https://localhost:44382/pauth/api/users/name/**USERNAME**that response 302 redirect to
https://localhost:44382/pauth/Identity/Account/Login?ReturnUrl=%2Fpauth%2Fapi%2Fusers%2Fname%2F**USERNAME**and this request response 200 OK with HTML content.
There is something wrong that I have done? Thank you.