I'm currently working on a Blazor Webassembly application consuming data from an API. Both applications are secured by an IdentityProvider (IdentityServer4):
- Blazor Wasm App (Oidc)
- API
- IdentityServer4
It works fine, I can login, logout and retrieve the correct data.
I'm running into 1 issue though:
info: Microsoft.AspNetCore.Authorization.DefaultAuthorizationService[1]
Authorization was successful.
This message is logged multiple times from blazor.webassembly.js:1, basically any time I do a page transition or load data on a grid or actually any other possible activity.
It looks to me like a permanent roundtrip from the Blazor app back to the IdentityServer4.
Do you know why this log message appears multiple times?
How can I solve this issue?