unirest-java v3.3.04 Release Notes

    • ➕ Add the ability to follow a paged response by providing a lambda for the response type and one for getting the next page. It will stop once the next link is null or empty.
    • The PagedList has handy dandy methods to pass consumers to all success and failure responses. java PagedList<JsonNode> result = Unirest.get("http://and.pagey") .asPaged( r -> r.asJson(), r -> r.getHeaders().getFirst("nextPage") );