-2

Hi there so i've been trying to use one of the authenticator "JwtAuthenticator" and I saw that the "Authorization" header have "Bearer" word not "JWT" is that a bug or am i doing something wrong any help please? enter image description here enter image description here

I'm trying to understand why does Authorization header have bearer word? instad of "JWT"

Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197

1 Answers1

2

The Bearer keyword in the Authorization header of an HTTP request indicates that the request is using the Bearer authentication scheme. This scheme is used to transmit an access token, such as a JSON Web Token (JWT), in the HTTP header to authorize the request.

This answer also provides enough basic information.

Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197