将 google 个日历事件移动到另一个人的日历

Move google calendar event to another person calendar

如何将 Google 日历事件移动到另一个人的日历?我尝试使用 Google 移动 API 但不幸的是我收到 404 not found 错误。

参考:https://developers.google.com/google-apps/calendar/v3/reference/events/move

有什么想法吗?

要执行移动,经过身份验证的用户需要至少拥有对源日历和目标日历的写入权限。

*Solution*:- 用于将日历事件从一个日历移动到另一个日历或更改组织者。

使用 ACL API: 通过传递字段

使用目标电子邮件调用 Acl API
calendarId: Primary,
scope:{
 type: user,
 value: Source EmailId
}

使用移动API: 通过传递字段

使用源电子邮件调用 move Api
calendarId: Primary,
eventId: "",
destination: Targeted Email Id

所以它将移动到目标电子邮件日历。 谢谢。