Best HTTP Authorization header type for JWT
The best HTTP header for your client to send an access token (JWT or any other token) is the Authorization header with the Bearer authentication scheme. This scheme is described by the RFC6750. Example: GET /resource HTTP/1.1 Host: server.example.com Authorization: Bearer eyJhbGciOiJIUzI1NiIXVCJ9TJV…r7E20RMHrHDcEfxjoYZgeFONFh7HgQ If you need stronger security protection, you may also consider the following IETF … Read more