Como título, logro recuperar todo el contenido aceptado por sugerencia en Google Docs a través de la API. Me he referido asu guía y a un par de publicaciones en esta plataforma, pero fue en vano. A continuación se muestra el fragmento que tengo actualmente. Por favor avise.
function myFunction() { var documentId ="My file ID"; var doc = Docs.Documents.get(documentId); var SUGGEST_MODE= "PREVIEW_SUGGESTIONS_ACCEPTED"; var doc1 = Docs.Documents.get(documentId).setSuggestionsViewMode(SUGGEST_MODE); console.log(doc1.body.content) }Al ver la documentación, debe usarlo así
function myFunction() { doc_id = '1s26M6g8PtSR65vRcsA90Vnn_gy1y3wj7glj8GxcNy_E'; SUGGEST_MODE = 'PREVIEW_SUGGESTIONS_ACCEPTED' suggestions = Docs.Documents.get(doc_id, { 'suggestionsViewMode': SUGGEST_MODE }); new_content = ''; suggestions.body.content.forEach(obj => { if(obj.paragraph) obj.paragraph.elements.forEach(element => { new_content += element.textRun.content; }); }); console.log(new_content); }