Skip to content

Latest commit

 

History

History
41 lines (22 loc) · 752 Bytes

README.rst

File metadata and controls

41 lines (22 loc) · 752 Bytes

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