Not able to watch Admin Users Directory using `google-admin-sdk`
问题 I am trying to connect to the G-Suite's User directory using the google-admin-sdk. I am using an API Key for authorization and I am not able to reach a successful execution. Here is the code snippet that I'm using: import { google } from 'googleapis'; import uuid from 'uuid/v4'; const API_KEY = 'my api key goes here'; google.admin({ version: 'directory_v1', auth: API_KEY }).users.list({ customer: 'my_customer', maxResults: 10, orderBy: 'email', }, (err, res: any) => { if (err) { return