Skip to content

httpie/httpie-ntlm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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