AI-generated Key Takeaways
-
This quickstart demonstrates how to use Google Apps Script to access the People API and retrieve a list of connections.
-
Before starting, ensure you have a Google Workspace domain with API access enabled and a Google Account with administrator privileges.
-
The guide walks you through creating, configuring, and running a script that prints the display names of your connections.
-
You'll need to enable the People API in your Apps Script project and authorize the script to access your Google account.
-
For production environments, Google recommends reviewing authentication and authorization best practices.
Create a Google Apps Script that makes requests to the People API.
Quickstarts explain how to set up and run an app that calls a Google Workspace API. 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.
In Apps Script, Google Workspace quickstarts use Advanced Google services to call Google Workspace APIs and handle some details of the authentication and authorization flow.
Objectives
- Configure the environment.
- Create and configure the script.
- Run the script.
Prerequisites
- A Google Workspace domain with API access enabled.
- A Google Account in that domain with administrator privileges.
- Access to Google Drive
Create the script
- Create a new script in the Apps Script editor by going to script.google.com/create.
- Replace the contents of the script editor with the following code:
- Click Save
.
- Click Untitled project, type Quickstart, and click Rename.
Configure the script
Enable the People API
Open the Apps Script project.
- Click Editor .
- Next to Services, click Add a service .
- Select People 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.
Next steps
- Google Apps Script Advanced Services documentation
- Try the Google Workspace APIs in the APIs explorer
- Troubleshoot authentication and authorization issues
- People API reference documentation