ℹ️ Please use the newer httpie-oauth1 plugin instead:
https://github.com/qcif/httpie-oauth1
OAuth plugin for HTTPie.
It currently provides support for OAuth 1.0a 2-legged.
$ pip install httpie-oauthYou should now see oauth1 under --auth-type in $ http --help output.
$ http --auth-type=oauth1 --auth='client-key:client-secret' example.orgYou can also use HTTPie sessions:
# Create session
$ http --session=logged-in --auth-type=oauth1 --auth='client-key:client-secret' example.org
# Re-use auth
$ http --session=logged-in POST example.org hello=world