I have created a Web API with a login method that authenticates against AzureAD returns a JWT string.
Now I have a presentation MVC app where I want to use this login method against. I'm trying to figure out how to use the built in Authentication in ASP.NET to authenticate users using this jwt string. All examples I find is using Identity for example, or external login methods like Facebook/Twitter.
I know I can use the jwt as a cookie in the frontend, but preferably I'd like to use it with the built-in functionality in ASP.NET to use [Authentication]-tags across my MVC-controllers.