写在google api python客户端文档
上Deleting a secondary calendar(under python example)
service.calendars().delete('secondaryCalendarId').execute()
此函数调用返回以下内容: method()只需要1个参数(给定2个)
有没有人知道这个错误意味着什么?显然,我只传递了1个参数,那就是需要删除的calendarId。或者有没有人使这个功能工作?需要帮助。
感谢。
答案 0 :(得分:4)
您必须提供参数名称:
service.calendars().delete(calendarId='secondaryCalendarId').execute()
http://api-python-client-doc.appspot.com/calendar/v3/calendars