mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
5 lines
151 B
Java
Executable File
5 lines
151 B
Java
Executable File
HttpResponse<String> response = Unirest.get("http://mockbin.com/har")
|
|
.header("accept", "application/json")
|
|
.header("x-foo", "Bar")
|
|
.asString();
|