I have
$.ajax({
url: 'service url',
type: 'POST',
async : true,
contentType: false,
processData: false,
cache: false,
success: function(data){
},
error: function(err){}
});
I can see the file in my Content-disposition
in the chrome inspector and the response shows an encrypted value in the inspector.
However, no file is being downloaded. What is missing here?