mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
5 lines
149 B
Java
Executable File
5 lines
149 B
Java
Executable File
HttpResponse<String> response = Unirest.post("http://mockbin.com/har")
|
|
.header("content-type", "text/plain")
|
|
.body("Hello World")
|
|
.asString();
|