I have multiple API's using IISDefaults.AuthenticationScheme, which my angular site call. The problem is each time the user navigates to a component that accesses a different api they need to log-in again.
To make this more elegant what is the better approach? I'm thinking I should have a user API which uses windows authentication and returns a JWT and the user group the user is assigned to? Then the angular passes these parameters to the API's which query the db.
Any ideas/suggestions/blogs welcome.
Thanks,