Google 日历是否改变了将共享日历添加到您的帐户的方式,需要您从电子邮件中单击“添加此日历”?
Did Google Calendar change the way shared calendars are added to your account by needing you to click Add This Calendar from the email?
我使用 Google 日历 API 来读取共享的 Google 日历。直到最近,当有人与我共享日历时,我会收到一封电子邮件,内容如下...
Hello name@gmail.com,
We are writing to let you know that someuser@gmail.com has given you
access to view events on the Google Calendar called
"someuser@gmail.com".
We have automatically added this calendar to your Google Calendar
account. You can hide or completely remove this calendar at any time.
- The Google Calendar Team View Your Calendar.
现在看来我需要先接受并添加日历,然后才能在我的列表中看到它。这是最后几封电子邮件的样子...
Hello name@gmail.com,
We are writing to let you know that someuser@gmail.com has
given you access to view events on the Google Calendar called "My Calendar".
After adding this calendar to your other calendars, you can hide or
completely remove it whenever you want.
Add this calendar.
- The Google Calendar Team View Your Calendar.
所以我必须实际打开电子邮件并单击 "Add this calendar" link 才能看到它。任何人都知道某些日历与其他日历的任何变化或差异会让我这样做吗?我需要这个过程是自动的,所以这有点负担。谢谢!
如前所述,最近更改了与用户共享日历的方式
现在,共享日历后,用户必须手动将日历添加到他的日历列表中。
必要的方法是CalendarList: insert
如果您使用具有域范围委派的服务帐户,您可以模拟用户并让服务帐户代表用户将日历添加到列表中。
您没有提到您使用的是哪种语言。请参阅 here 了解如何使用不同编程语言实现 insert
请求的示例。
我使用 Google 日历 API 来读取共享的 Google 日历。直到最近,当有人与我共享日历时,我会收到一封电子邮件,内容如下...
Hello name@gmail.com,
We are writing to let you know that someuser@gmail.com has given you access to view events on the Google Calendar called "someuser@gmail.com".
We have automatically added this calendar to your Google Calendar account. You can hide or completely remove this calendar at any time.
- The Google Calendar Team View Your Calendar.
现在看来我需要先接受并添加日历,然后才能在我的列表中看到它。这是最后几封电子邮件的样子...
Hello name@gmail.com,
We are writing to let you know that someuser@gmail.com has given you access to view events on the Google Calendar called "My Calendar".
After adding this calendar to your other calendars, you can hide or completely remove it whenever you want.
Add this calendar.
- The Google Calendar Team View Your Calendar.
所以我必须实际打开电子邮件并单击 "Add this calendar" link 才能看到它。任何人都知道某些日历与其他日历的任何变化或差异会让我这样做吗?我需要这个过程是自动的,所以这有点负担。谢谢!
如前所述,最近更改了与用户共享日历的方式
现在,共享日历后,用户必须手动将日历添加到他的日历列表中。
必要的方法是CalendarList: insert
如果您使用具有域范围委派的服务帐户,您可以模拟用户并让服务帐户代表用户将日历添加到列表中。
您没有提到您使用的是哪种语言。请参阅 here 了解如何使用不同编程语言实现 insert
请求的示例。