Spring boot RestTemplate - multipart/mixed
问题 Have a REST API which only accepts content type multipart/mixed. Trying to use restTemplate and generate REST request with content type multipart/mixed. If I comment setContentType restTemplate defaults to multipart/form-data. setContentType(MediaType.parseMediaType("multipart/mixed")) But no luck, any example how I can call API generating multipart/mixed request? Maybe this helps HttpHeaders publishHeaders = new HttpHeaders(); publishHeaders.set(HEADER_TABLEAU_AUTH, token); publishHeaders