Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taimos/httputils
HTTP Utilities
https://github.com/taimos/httputils
Last synced: 8 days ago
JSON representation
HTTP Utilities
- Host: GitHub
- URL: https://github.com/taimos/httputils
- Owner: taimos
- License: apache-2.0
- Created: 2012-05-31T15:31:21.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-10-29T16:48:11.000Z (about 1 year ago)
- Last Synced: 2024-04-14T05:52:53.478Z (7 months ago)
- Language: Java
- Size: 96.7 KB
- Stars: 23
- Watchers: 5
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
httputils
=========HTTP Utilities
[![Build Status](https://travis-ci.org/taimos/HTTPUtils.png?branch=master)](https://travis-ci.org/taimos/HTTPUtils)
Setup
=====```
de.taimos
httputils
someversion```
Usage
=====```
try(final HTTPResponse response = WS.url("https://www.google.de/").get()) {
response.getStatus(); // Get status code
response.getResponseAsString(); // Get response body
}
```