ahmadnassri/httpsnippet

View on GitHub
src/targets/java/unirest/fixtures/text-plain.java

Summary

Maintainability
A
0 mins
Test Coverage
HttpResponse<String> response = Unirest.post("http://mockbin.com/har")
  .header("content-type", "text/plain")
  .body("Hello World")
  .asString();