Skip to main content
Adds OAuth 2 authentication to an HTTP API connection. Pick the OAuth token you have already set up, and every request the connection sends carries that token in an Authorization: Bearer <token> header. If a request comes back rejected because the token has expired, this feature automatically fetches a fresh token and tries the request once more, so you do not have to manage refreshes yourself.

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 looks like this:
FieldValue
TokenA configured OAuth token reference
Header(left empty, so Authorization is used)
Header Content(left empty, so Bearer {token} is used)
With these settings, every request sent over the connection includes a header such as Authorization: Bearer your-access-token.