I use spring RestTemplate to call the the Third-party services,
ResponseEntity<String> forEntity = restTemplate.getForEntity(url, String.class);
result like this:
forEntity status:200 headers: content-type=audio/wav body:"RIFFä,,,xxxxxxx......"
response is enter image description here the body seems to wav data, I want to save the data to wav file.
if I Go directly to the link in chrome, it's ok to play, and download.