Skip to content
Vegha Docs

Digest, NTLM & other

Beyond the common token-based methods, Vegha supports four additional auth schemes for older or enterprise APIs. Each is configured from the Authorization tab.

HTTP Digest authentication responds to a server challenge with a hashed credential, so the password is never sent in clear text.

FieldDescription
UsernameThe account username
PasswordThe account password

Vegha performs the challenge/response handshake automatically — it issues the initial request, reads the WWW-Authenticate challenge, and resends with the computed Authorization header.

NTLM is a Windows-integrated authentication protocol used by many intranet and on-premises services.

FieldDescription
UsernameThe account username
PasswordThe account password
DomainThe Windows domain, if required

OAuth 1.0a signs each request with a consumer key/secret and a token key/secret.

FieldDescription
Consumer KeyThe application’s consumer key
Consumer SecretThe application’s consumer secret
TokenThe access token
Token SecretThe access token secret
Signature MethodThe signing algorithm (for example HMAC-SHA1)

If your API uses OAuth 2.0 rather than 1.0a, use OAuth2 instead.

WSSE UsernameToken adds a WS-Security UsernameToken header, used by some SOAP and legacy web services.

FieldDescription
UsernameThe account username
PasswordThe account password

Vegha generates the nonce, timestamp, and password digest required by the WSSE specification.

Every field above supports {{variable}} interpolation and secret:// references. Keep passwords and secrets in an environment or a secret manager rather than typing them inline.