如在google api python客户端文档上所写
删除辅助日历(在python示例下)
service.calendars().delete('secondaryCalendarId').execute()
此函数调用返回以下内容:method()只接受1个参数(给定2个)
有人知道这个错误意味着什么吗?很明显,我刚刚传递了一个参数,那就是需要删除的calendarId。或者有人让这个功能发挥作用吗?需要帮助。
谢谢。
您必须提供参数名称:
service.calendars().delete(calendarId='secondaryCalendarId').execute()
http://api-python-client-doc.appspot.com/calendar/v3/calendars