google 资源日历 API 的 nodejs 客户端
nodejs client for google resource calendar APIs
我正在开发一项功能,我需要获取有关被视为资源日历的会议室的信息。我将 googleapis node js client 用于其他与日历相关的 API,例如事件列表,插入。我无法在 googleapis 库中找到任何方法来从 google admin SDK 的资源日历中获取数据。是否有资源日历 API 的 NodeJS 客户端?或者用任何其他方式调用那些 APIs?
我正在做同样类型的应用程序,并且在资源部分也被阻止了。
似乎所有资源都可以通过 Directory API.
访问
import { google } from 'googleapis';
var service = google.admin('directory_v1');
service.resources.calendars.list();
您需要在 Google 开发者控制台中激活 Admin SDK。
我想连接一个管理员帐户。
这很愚蠢,因为作为普通用户,您可以看到诸如日历房间之类的资源。
我正在开发一项功能,我需要获取有关被视为资源日历的会议室的信息。我将 googleapis node js client 用于其他与日历相关的 API,例如事件列表,插入。我无法在 googleapis 库中找到任何方法来从 google admin SDK 的资源日历中获取数据。是否有资源日历 API 的 NodeJS 客户端?或者用任何其他方式调用那些 APIs?
我正在做同样类型的应用程序,并且在资源部分也被阻止了。
似乎所有资源都可以通过 Directory API.
访问import { google } from 'googleapis';
var service = google.admin('directory_v1');
service.resources.calendars.list();
您需要在 Google 开发者控制台中激活 Admin SDK。
我想连接一个管理员帐户。
这很愚蠢,因为作为普通用户,您可以看到诸如日历房间之类的资源。