Is there any limitation on JavaScript Max Blob size
I am trying to download a file using AJAX call. I need to use AJAX call because I have to make a post request along with that I need to send some headers from the client. As Server API is not under our control, we don't have much choice other than using AJAX. In order to show file save dialog, I am converting the byte array to blob to Object URL like shown below var oReq = new XMLHttpRequest(); oReq.open("POST","api/operations/zip", true); oReq.responseType = "arraybuffer"; oReq.onload = function(oEvent) { var blob=new Blob([oReq.response], {type: 'application/octet-binary'}); var link