Skip to content

Digest Authentication with Escape

Description

The Digest authentication preset implements HTTP Digest authentication.

The supported authentication method is curl --digest -u user:password example.com. In this example, the username is user and the password is password.

Examples

presets:
-   type: digest
    users:
    -   username: user1
        password: pass1
    -   username: user2
        password: pass2

Extensive Configuration

Property Type Default Description
type * Const[digest] digest
users * List[DigestUserPreset] A list of users with digest credentials to create

Objects

DigestUserPreset

Property Type Default Description
cookies Dict[string, string] null Optional cookies injected during the authentication process and in authentified requests.
headers Dict[string, string] null Optional headers injected during the authentication process and in authentified requests.
password * string The Digest password of the user.
query_parameters Dict[string, string] null Optional query parameters injected during the authentication process and in authentified requests.
username * string The Digest username of the user.