Google calendar api v3:如何检索资源列表?

时间:2016-07-30 01:55:27

标签: python-2.7 google-calendar-api

Google日历资源'日历'在v1中有一个list()方法,此后已在v3中弃用。另一种建议是使用Google Apps Calendar Resource API,这很快就会被弃用。什么是检索所有资源列表的可靠方法,例如用户有权访问的公司中的所有会议室?

1 个答案:

答案 0 :(得分:0)

如果它位于Google Calendar API下,请使用CalendarList()

检查Overview of the Calendar API

  

Calendar - 日历是事件的集合。每个日历都有关联的元数据,例如日历说明或默认日历时区。单个日历的元数据由日历资源表示。 日历集合包含所有现有日历的日历资源。

     

Calendar List - 日历用户界面中用户日历列表中所有日历的列表。日历列表中显示的单个日历的元数据由CalendarListEntry资源表示。此元数据包括日历的用户特定属性,例如其颜色或新事件的通知。 CalendarList集合包含给定用户的所有CalendarListEntry资源。有关日历和CalendarList集合之间差异的进一步说明,请参阅Calendar and Calendar List

HTTP请求

GET https://www.googleapis.com/calendar/v3/users/me/calendarList

但是如果你在谈论Admin SDK:

image from Google

点击链接Calendar Resource

Resources.calendars: list

  

检索帐户的日历资源列表。

HTTP请求

GET https://www.googleapis.com/admin/directory/v1/customer/customer/resources/calendars