我使用Google API中的quickstart.py代码从日历中获取事件。它的代码如下,完全是这里的https://developers.google.com/calendar/quickstart/python
from __future__ import print_function
from apiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
import datetime
# Setup the Calendar API
SCOPES = 'https://www.googleapis.com/auth/calendar.readonly'
store = file.Storage('credentials.json')
creds = store.get()
if not creds or creds.invalid:
flow = client.flow_from_clientsecrets('client_secret.json', SCOPES)
creds = tools.run_flow(flow, store)
service = build('calendar', 'v3', http=creds.authorize(Http()))
# Call the Calendar API
now = datetime.datetime.utcnow().isoformat() + 'Z' # 'Z' indicates UTC time
print('Getting the upcoming 10 events')
events_result = service.events().list(calendarId='primary', timeMin=now,
maxResults=10, singleEvents=True,
orderBy='startTime').execute()
events = events_result.get('items', [])
if not events:
print('No upcoming events found.')
for event in events:
start = event['start'].get('dateTime', event['start'].get('date'))
print(start, event['summary'])
这对我来说很好。现在我在我的帐户中添加了另一个日历,将我的代码复制到另一个文件夹中,然后再次执行这些步骤(谷歌链接)。我将secound .json放入secound文件夹并进行测试。
即使它应该能够访问这两个日历,它也只能从第一个日历中检索事件。所以我想知道如何访问其他日历(最好只有一个日历,但我一下子也会帮助)。
我搜索了没有帮助的Google文档,我找到的每个Stackoverflow问题依赖于另一种编程语言(我没有将其附加到python),或者答案包含不再存在的网站的链接。
非常感谢!
答案 0 :(得分:1)
您需要选择要从中检索通过正确的calendarId
到service.events().list()
的事件的日历。 'primary'
始终可用于获取用户的主日历,您可以使用service.calendarList().list()
获取用户拥有的所有日历的信息。