What does “Challenge” term stand for?
A ChallengeResult is an ActionResult that when executed, challenges the given authentication schemes’ handler. Or if none is specified, the default challenge scheme’s handler. Source code for ChallengeResult So for example, you can do: return Challenge(JwtBearerDefaults.AuthenticationScheme); //Can specify multiple schemes + parameters This will challenge the JWT Bearer authentication handler. In this handler’s case, it … Read more