I have a blob of size (300MB) approx and have converted it to byte array (as its customer requirement) and now I am trying to post this byte array to server through AJAX as shown below:
$.ajax({
url: "http://p80ee.mocklab.io",
type: 'POST',
contentType: 'application/json',
data: ui8,
success: function (result) {
console.log("Response : " , result);
}
});
but server is showing error because of long data as shown below
Can I post this byte array in stream form? if yes, then how ?
Someone please help if know the answer