Torbjørn
Torbjørn

Reputation: 6503

Digest authentication on http requests from clojure (?)

I would like to consume a REST API using clojure, but I need to use digest authentication. I've been googling, but I can find no direct support for it in any of the client libs, and the documentation on the Java side (as well as on digest auth implementations in general) is poor.

I would basically like to get recommendations on the easiest route to get digest authentication working on my http requests from clojure.

Upvotes: 5

Views: 492

Answers (1)

Miki Tebeka
Miki Tebeka

Reputation: 13850

clj-http uses HttpComponents that have digest authentication (see here). Maybe you can cook something with that.

Upvotes: 3

Related Questions