Google Apps 脚本快速入门

快速入门介绍了如何设置和运行调用 Google Workspace API 的应用。

Google Workspace 快速入门使用 API 客户端库来处理身份验证和授权流程的一些细节。我们建议您为自己的应用使用客户端库。本快速入门使用适合测试环境的简化身份验证方法。对于生产环境,我们建议您先了解身份验证和授权,然后再选择适合您的应用的访问凭据

创建一个用于向 People API 发出请求的 Google Apps 脚本

目标

  • 配置环境。
  • 创建并配置脚本。
  • 运行脚本。

前提条件

  • 访问 Google 云端硬盘

创建脚本

  1. 前往 script.google.com/create 创建新脚本。
  2. 将脚本编辑器中的内容替换为以下代码:

people/quickstart/quickstart.gs
/**
 * Print the display name if available for 10 connections.
 */
function listConnectionNames() {
  try {
    /**
     * List the 10 connections/contacts of user
     * @see https://developers.google.com/people/api/rest/v1/people.connections/list
     */
    const connections = People.People.Connections.list('people/me', {
      pageSize: 10,
      personFields: 'names,emailAddresses'
      // use other query parameter here if needed.
    });
    connections.connections.forEach((person) => {
      // if contacts/connections is available, print the name of person.
      if (person.names && person.names.length === 0) {
        console.log('No display name found for connection.');
        return;
      }
      console.log(person.names[0].displayName);
    });
  } catch (err) {
    // TODO (developer) - Handle exception from People API
    console.log('Failed with error %s', err.message);
  }
}

  1. 点击“保存”图标
  2. 点击未命名项目,输入 Quickstart,然后点击重命名

配置脚本

启用 People API

  1. 打开 Apps 脚本项目。
  1. 点击编辑器
  2. 点击“服务”旁边的“添加服务”图标
  3. 选择 People API,然后点击添加

运行示例

在 Apps 脚本编辑器中,点击运行

首次运行该示例时,系统会提示您授予访问权限:

  1. 点击查看权限
  2. 选择账号。
  3. 点击允许

脚本的执行日志会显示在窗口底部。

后续步骤