在google api python客户端上删除辅助日历会出现意外错误

时间:2012-03-01 17:16:43

标签: python google-api google-calendar-api google-api-python-client

写在google api python客户端文档

Deleting a secondary calendar(under python example)

service.calendars().delete('secondaryCalendarId').execute()

此函数调用返回以下内容: method()只需要1个参数(给定2个)

有没有人知道这个错误意味着什么?显然,我只传递了1个参数,那就是需要删除的calendarId。或者有没有人使这个功能工作?需要帮助。

感谢。

1 个答案:

答案 0 :(得分:4)

您必须提供参数名称:

service.calendars().delete(calendarId='secondaryCalendarId').execute()

http://api-python-client-doc.appspot.com/calendar/v3/calendars