NTLM auth plugin for HTTPie.
$ pip install httpie-ntlm
You should now see ntlm
under --auth-type
in $ http --help
output.
$ 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