clj-http
clj-http copied to clipboard
An idiomatic clojure http client wrapping the apache client. Officially supported version.
On master, when I tried out this snippet from https://github.com/dakrone/clj-http/tree/master#debugging: ``` (client/get "http://example.org" {:response-interceptor (fn [resp ctx] (println ctx))}) ``` I got this: ``` #error { :cause "No matching method...
clj-http has a lot of tests, but it would be good to know exactly what's not being exercised. There are some automated tools out there that can show coverage, it'd...
We've been using clj-http version 3.5 for a while, and are very happy with it. But today, we ran into an issue we haven't seen before. A specific pattern of...
please add AWS Signature Version 4 Signing http://docs.aws.amazon.com/general/latest/gr/signature-v4-examples.html#signature-v4-examples-java
I'm writing an application in which the server can quickly rule out a request based on it's headers. When this happens the server will send back a 4xx response. If...
clj-http v3.1.0 is facing this exception while clj-http v2.2.0 is not. Below is my code `(http/get "https://www.nationwidechildrens.org/Document/Get/82228" {:as :stream :insecure? true :throw-exceptions true })` Googling around, bring me to http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error....
Sorry for the support request but I can't for the life of me tell how to do this with this library and I wanted to know if there was a...
Some headers should not be written into logs. However, these headers will appear in the exception info thrown by a bad request. Manually redacting them at the site of logging...
Hi, Needed NT authentication and support for custom auth schemes (for SPNEGO+NTLM) to be able to work with an IIS enabled web service.
# What this PR does [RFC 7231 Section 3.1.1.1](https://www.rfc-editor.org/rfc/rfc7231.html#section-3.1.1.1) allows the charset specified in the `Content-Type` header to be a quoted string. We want `detect-charset` to return unquoted charset names,...