I am having an issue, when i send a large size image in base64 (around 20 MB) as a FormData param the AJAX POST request does not work. If it is less than 10 MB, the request FormData params work correctly. Why is it behaving like this?
var formData = new FormData();
formData.append(“base64Image”, “<LARGE SIZE BASE64 STRING>”);
$.ajax({
url : "/api/extensions",// no i18n
method : "POST",//no i18n
processData : false,
contentType : false,
data : formData
...
});