is there any way to output the query data that was loaded into WebClient?
e.g.
WebClient webClient = WebClient.create("http://www.example.com";).query("query1", "query1value").query("query2", "query2value").get();
StringBuffer result = new StringBuffer();
for (Query query : webClient.queries()) {
    result.append(query.getKey() + ": " + query.getValue() + System.lineSeparator());
}
query1: query1value
query2: query2value

Reply via email to