我无法使用Google Calendar API中的.move()
函数将重复发生的事件的实例移至其他日历...有任何想法吗?
我的代码:
def eventmover(calendarId, eventId, destination, login):
service = build('calendar', 'v3', credentials=login)
service.events().instances().move(calendarId=calendarId,eventId=eventId, destination=destination).execute()
返回的错误:
json返回“无法更改实例的组织者。“>