I\'m using ASP.NET Core 2.0 application (Web API) as a JWT issuer to generate a token consumable by a mobile app. Unfortunately, this token couldn\'t be validated by one con
For Dotnetcore 3.1, I placed app.UseAuthentication() before app.UseAuthorization()
app.UseAuthentication()
app.UseAuthorization()