Awesome Reviewers

When implementing or documenting security-related plugins/features, ensure examples are both secure and operationally correct: avoid leaking sensitive data, match cookie/transport settings, use the correct authentication header formats, and ensure authentication happens before authorization/restriction.

Apply these rules:

Example (Bearer token correctness):

curl -i "http://127.0.0.1:9080/get" \
  -H "Authorization: Bearer ${john_jwt_token}"

Example (Secure cookie guidance):

Example (auth-before-restriction):