My organization uses an IdentityServer4 for Bearer-Authentication as a Single-Sign-On Provider.
We also have a number of services written in .NET Framework 4.6 and OWIN. What would be the "correct" way to validate tokens from IdentityServer4 in an OWIN Web API?
I found the NuGet-Package IdentityServer3.AccessTokenValidation which works with OWIN. But the package IdentityServer4.AccessTokenValidation seems only to work with ASP.NET Core as far as I understand it.
Do I have to configure validation manually via the IdentityServerBearerTokenValidationMiddleware class? Or is there a better solution?