I'm learning to work with feign. When the requests were in the "json" format, all the responses came fine, but when I needed to get a response in the "xml" format, it gives this error. How can I solve it?
@GetMapping("/link") CorporateItemsDto getCorporationDepartments( @RequestParam(value = "key") String key );
I tried RestTemplate, but it didn't work