Python - Using Google Calendar API



我在使用Google Calendar API时遇到了一点问题。

我想使用数组添加事件摘要(和其他选项(:

event = {
'summary:': [temp_sheet[0]],
'start': {
'dateTime': '2017-07-28T19:00:00',
'timeZone': 'Europe/Warsaw',
},
'end': {
'dateTime': '2017-07-29T07:30:00',
'timeZone': 'Europe/Warsaw',
}
}

temp_sheet[0]有一些文字,我想把它放在摘要中。但是在检查日历后,有"没有摘要">

任何帮助;>?

谢谢!(:

有一个事件的摘要和描述字段。

官方文档 https://developers.google.com/google-apps/calendar/v3/reference/events

最新更新