Skip to main content

Headers Authentication with Escape

Description

The 'Headers' authentication preset is a straightforward, manual authentication method:

  • Manual Token Injection: Authentication is achieved by manually injecting tokens or credentials into the request headers. No authentication request is necessary.
  • Static Credentials: User credentials are static and defined in advance, making setup simple.
  • Token Expiry Consideration: A key aspect to consider is that since tokens are manually set, they may expire, necessitating regular manual updates to maintain access.

This preset is ideal for scenarios where authentication can be handled via predefined headers, but users should be mindful of the need to regularly update tokens or credentials to avoid access issues.

Examples

presets:
- type: headers
users:
- username: user1
headers:
Authorization: Bearer user1Token
- username: user2
headers:
Authorization: Bearer user2Token

Extensive Configuration

PropertyTypeRequiredDescriptionReference
typeConst[headers]True
usersHeadersUserPresetTrueA list of users with basic credentials to createHeadersUserPreset

Objects

HeadersUserPreset

PropertyTypeRequiredDescriptionReference
usernamestringTrueThe name of the user.
headersDict[string, string]TrueThe headers of the user.
cookiesDict[string, string]FalseOptional cookies injected during the authentication process and in authentified requests.