mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
7 lines
282 B
Java
Executable File
7 lines
282 B
Java
Executable File
HttpResponse<String> response = Unirest.post("http://mockbin.com/har?foo=bar&foo=baz&baz=abc&key=value")
|
|
.header("cookie", "foo=bar; bar=baz")
|
|
.header("accept", "application/json")
|
|
.header("content-type", "application/x-www-form-urlencoded")
|
|
.body("foo=bar")
|
|
.asString();
|