Our app downloads a zip file, but the response is in binary.
So what I did is to convert it to base64. It works when the size is 87.7KB but an error occ
87.7KB
I got my answer from another question
btoa(new Uint8Array(blob).reduce(function (data, byte) { return data + String.fromCharCode(byte); }, ''));
Source