编程语言
首页 > 编程语言> > 使用gdata python库发送Google日历事件邀请通知

使用gdata python库发送Google日历事件邀请通知

作者:互联网

我正在使用Google的gdata库在python中以编程方式创建日历事件.到目前为止,除了以下几点,以下代码可以正常工作:

我终生无法将邀请通知发送给被邀请者(或被邀请者列表):

import datetime
import atom
import gdata.calendar.service  
from gdata.calendar import Who, Where, When

entry = gdata.calendar.CalendarEventEntry()  
entry.title = atom.Title(text = 'event-title')
entry.content = atom.Content(text = 'some event etc...')
entry.send_event_notifications = atom.Entry(text = 'true') #<<<<<<<<<<<<<<<<<
start = datetime.datetime.now().isoformat()
entry.when.append(When(start_time=start))
entry.where.append(Where(value_string='somewhere'))
entry.who.append(Who(email = 'invitee@gmail.com'))
client = gdata.calendar.service.CalendarService(email='inviter@gmail.com', password='pa$$word')
client.ProgrammaticLogin()
event = client.InsertEvent(entry,'http://www.google.com/calendar/feeds/default/private/full')

我认为标记的行是发送邀请通知所必需的,但是它不起作用.有任何想法吗?

解决方法:

实际上,正确的语法是:

from gdata.calendar.data import SendEventNotificationsProperty

# [...] stuff

entry.send_event_notifications = SendEventNotificationsProperty(value='true')

标签:gdata-api,python
来源: https://codeday.me/bug/20191102/1993775.html