While making post/get requests through webflux webclient how can ssl check be disabled ?
Sample builder code which I'm using:
WebClient webClient = WebClient.builder()
.baseUrl("https://api.github.com")
.defaultHeader(HttpHeaders.CONTENT_TYPE, "application/vnd.github.v3+json")
.defaultHeader(HttpHeaders.USER_AGENT, "Spring 5 WebClient")
.build();
In above code what change should be made to make ssl verification false ?