Status Update
Comments
jp...@google.com <jp...@google.com> #2
To help us understand the issue, please ensure you have provided a minimal code example that reproduces the problem, including the API calls, errors, and responses you're seeing.
Generated Metadata
- Summary: The user is encountering a
NetworkError
with an HTTP 500 error when trying to upload files using a web app in Apps Script. This could be due to a server-side issue or a problem with the script's file handling logic. - Tags:
You can
bl...@google.com <bl...@google.com> #3
Automated by Blunderbuss job workspace-devrel-public-issue-tracker-blunderbuss-autoassigner for config assign for component 191640.
ja...@serviciosbolivar.com <ja...@serviciosbolivar.com> #4
Envío el código desde front, el form lleva documentos
$("#FormCorrecionDocumentos").submit(function(e){
e.preventDefault();
$("#overlay").show();
google.script.run.withFailureHandler(function(e){
if(String(e).includes("NetworkError")){
Swal.fire({
title: 'Error de Conexión 🛜',
icon: 'error',
html: 'Verifica la conexión a internet.',
showCancelButton: false,
confirmButtonText: `Cerrar <i class="bi bi-x-circle-fill"></i>`,
customClass: {
confirmButton: 'Style_Button_Swal_Green2'
}
});
}else{
Swal.fire({
title: 'Error de Ejecución',
icon: 'error',
html: 'Presentamos fallas en este momento, estamos trabajando para solucionarlo lo más pronto posible <br> Error: <b>'+e+'</b>',
showCancelButton: false,
confirmButtonText: `Cerrar <i class="bi bi-x-circle-fill"></i>`,
customClass: {
confirmButton: 'Style_Button_Swal_Green2'
}
});
}
$("#overlay").hide();
}).withSuccessHandler(function(response){
$("#FormCorrecionDocumentos")[0].reset();
$("#Seccion_Corregir_Docs").prop("hidden", true);
$("#seccion_cargue_exitoso_Docs").show();
Swal.fire({
icon: 'success',
title: 'Cargue Correcto',
html: 'Nuestro personal especializado ha sido notificado para validar los documentos, muy pronto nos comunicaremos contigo.',
showDenyButton: false,
showCancelButton: false,
confirmButtonText: 'Entendido',
customClass: {
confirmButton: 'Style_Button_Swal_Green'
},
allowOutsideClick: false,
showCloseButton: false
});
$("#overlay").hide();
}).CargarDocsCorregidos(this);
});
se...@gmail.com <se...@gmail.com> #5
Today 03.03.2025 I received the same problem - Failed to load resource: the server responded with a status of 500. Last time the bug was fixed in a day, so I'm waiting.
lo...@gmail.com <lo...@gmail.com> #6
HERE SAME
Description