Yes, you can see it via: webClient.getCurrentURI().getQuery(); Colm.
On Wed, May 9, 2018 at 8:25 AM, Matthew Broadhead < [email protected]> wrote: > 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 > -- Colm O hEigeartaigh Talend Community Coder http://coders.talend.com
