Fields
Sample data
This feature adds authentication to a live HTTP connection rather than transforming data, so there is no before/after to show. A typical configuration that logs in at/auth/login, reads a token from the response body, and sends it back as an Authorization header looks like this:
| Field | Value |
|---|---|
| Header name | Authorization |
| Request URI | /auth/login |
| Request Method | post |
| Source | Response body |
| Template | Bearer &{token} |
/auth/login, reads the token field from the response, and adds Authorization: Bearer <token> to each request the connection sends.