Concept Flow - Bearer token handling
Client sends request with Authorization header
Server reads Authorization header
Check if header starts with 'Bearer '
Extract token
Validate token
If valid: allow access
If invalid: reject request
The server checks the Authorization header for a Bearer token, extracts it, validates it, and then allows or denies access.
