PI的新增功能在https://developers.google.com/calendar/quickstart/python?refresh=1&pli=1#troubleshooting上设置并安装了Python快速入门
可以,但是我还需要获取会议的地点。
试图更改代码
for event in events:
start = event['start'].get('dateTime', event['start'].get('date'))
locations = event['location'].get('string')
print(locations, start, event['summary'])
获取错误keyerror'位置'
我在做什么错了?