Do not hardcode JWT tokens into frontend code.
Do not expose JWT tokens in browser environments.
Prefer calling the RFQ HTTP API from a server-side component.
Use HTTPS for all production requests.
Avoid storing JWT tokens in locations that are easy to exfiltrate (for example localStorage).
localStorage
Prefer server-side secret storage or an httpOnly cookie pattern.
httpOnly
Rotate JWT tokens periodically.
Do not log tokens.
When reporting errors, redact secrets.