/httpie-ntlm

NTLM auth plugin for HTTPie

Primary LanguagePythonOtherNOASSERTION

httpie-ntlm

NTLM auth plugin for HTTPie.

Installation

$ pip install httpie-ntlm

You should now see ntlm under --auth-type in $ http --help output.

Usage

$ http --auth-type=ntlm --auth='domain\\username:password' example.org

You can also use HTTPie sessions:

# Create session
$ http --session=logged-in --auth-type=ntlm --auth='domain\\username:password' example.org

# Re-use auth
$ http --session=logged-in POST example.org hello=world

Requirements