When securing your ASP.NET Core Web APIs, which authentication approach uses a compact, URL-safe means of representing claims to be transferred between two parties?

  • OAuth 2.0
  • JSON Web Tokens (JWT)
  • SAML (Security Assertion Markup Language)
  • OpenID Connect
JSON Web Tokens (JWT) is an authentication approach commonly used in ASP.NET Core Web APIs. JWTs are compact and URL-safe, making them efficient for transferring claims between parties. They provide a secure way to represent user identities and access permissions.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *