Hello,
I am trying to update/insert a Google Calendar Event using the GCal
Python library. However, whenever I try to do so with any enum field
filled (like attendee_status, transparency, and event_status). I get
an error like
{'status': 400, 'body': '[Line 2, Column 465, element ns1:eventStatus]
Missing attribute: 'value'', 'reason': 'Bad Request'}
Snippets of the code is below:
event = gdata.calendar.CalendarEventEntry()
pre_gdata = 'http://schemas.google.com/g/2005#event.'
tra = gdata.calendar.EventStatus()
tra.value = pre_gdata +'opaque'
event.transparency = tra
Any help is surely appreciated.
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---