File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
# ` clj-http-lite `
2
2
3
- A Clojure HTTP library similar to
4
- [ clj-http] ( http://github.com/dakrone/clj-http ) , but more lightweight.
3
+ A Clojure HTTP library similar to [ clj-http] ( http://github.com/dakrone/clj-http ) , but more lightweight.
5
4
6
5
> This is a somewhat maintained fork of the original [ ` hiredman/clj-http-lite ` ] ( https://github.com/hiredman/clj-http-lite ) repo.
7
6
7
+ [ Installation] ( #installation ) | [ Usage] ( #usage ) | [ Known Issues] ( #known-issues ) | [ Design] ( #design ) | [ Development] ( #development )
8
+
8
9
## Installation
9
10
10
11
` clj-http-lite ` is available as a Maven artifact from [ Clojars] ( http://clojars.org/clj-http-lite ) :
@@ -192,6 +193,15 @@ If you need to fake clj-http responses (for things like testing and
192
193
such), check out the
193
194
[clj-http-fake](https://github.com/myfreeweb/clj-http-fake ) library.
194
195
196
+ ## Known Issues
197
+
198
+ - Nested form params [aren't serialized correctly](https://github.com/hiredman/clj-http-lite/issues/15 ). There's an easy workaround however:
199
+
200
+ ```clojure
201
+ :form-params {" toplevel" {" nested" some-data}} ; doesn't work
202
+ :form-params {" toplevel[nested]" some-data} ; works
203
+ ```
204
+
195
205
## Design
196
206
197
207
The design of `clj-http` is inspired by the
You can’t perform that action at this time.
0 commit comments