clj-http icon indicating copy to clipboard operation
clj-http copied to clipboard

An idiomatic clojure http client wrapping the apache client. Officially supported version.

Results 76 clj-http issues
Sort by recently updated
recently updated
newest added

# The Problem I have to interact with a hateful API which expects a file uploaded as part of a multi-part field, where both the multi-part field and the file...

I'm using css.gg to bring in CSS for icons, as mentioned here: https://github.com/astrit/css.gg#3-collection Currently, I'm trying to port a query from HTML to CLJ. As an HTML stylesheet link, this...

# Backgroud When using clj-http async requests some do not exist URL and set the connection timeout, but the connection timeout is **delayed 2-3 seconds**. # Test The test version...

Signed-off-by: Greg Haskins

I'm trying to manually add a cookie to a cookie store, but I'm running into some problems. Running the following code results in an empty set ```clojure (def my-cookie-store (clj-http.cookies/cookie-store))...

Potemkin is no longer maintained and is barely used by `clj-http`. It's only use is in the `clj-http.headers` ns where `potemkin/def-map-type` is used to conveniently create a map with multiple...

4.x

It looks like https://github.com/dakrone/clj-http/blob/3.x/src/clj_http/util.clj#L45 and https://github.com/dakrone/clj-http/blob/3.x/src/clj_http/util.clj#L99 are leaking connections - the input stream argument is not closed

I've discovered this while working on issue #589 When the server sends cookies with the same name, for example: ``` Set-Cookie: foo=bar;expires=Wed, 21 Oct 2021 07:28:00 GMT; Set-Cookie: foo=qux;expires=Wed, 21...