Stay organized with collections
Save and categorize content based on your preferences.
Quickstarts explain how to set up and run an app that calls a
Google Workspace API.
Google Workspace quickstarts use the API client libraries to handle some
details of the authentication and authorization flow. We recommend that
you use the client libraries for your own apps. This quickstart uses a
simplified authentication approach that is appropriate for a testing
environment. For a production environment, we recommend learning about
authentication and authorization
before
choosing the access credentials
that are appropriate for your app.
/** * Prints the title of the sample document: * https://docs.google.com/document/d/195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE/edit * @see https://developers.google.com/docs/api/reference/rest/v1/documents/get */functionprintDocTitle(){constdocumentId='195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE';constdoc=Docs.Documents.get(documentId,{'includeTabsContent':true});console.log(`Thetitleofthedocis:${doc.title}`);}
Click Save .
Click Untitled project, type
Quickstart, and click Rename.
Configure the script
Enable the Google Docs API
Open the Apps Script project.
Click Editorcode.
Next to Services, click Add a service
add .
Select
Google Docs API
and click Add.
Run the sample
In the Apps Script editor, click Run.
The first time you run the sample, it prompts you to authorize access:
Click Review permissions.
Choose an account.
Click Allow.
The script's execution log appears at the bottom of the window.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-19 UTC."],[[["This quickstart demonstrates how to create a Google Apps Script that interacts with the Google Docs API to retrieve and print a document's title."],["Before running, you'll need a Google Account with access to Google Drive and must enable the Google Docs API within the script."],["Upon execution, the script requires authorization to access your Google Docs data, and the output is displayed in the execution log."],["For production environments, explore comprehensive authentication and authorization methods for enhanced security beyond this simplified approach."],["Further resources include advanced Apps Script documentation, troubleshooting guides, and detailed Docs API references for deeper exploration."]]],[]]