如何检测谷歌日历中的更改

时间:2014-12-19 21:52:33

标签: google-calendar-api

修改Google日历后,您是否收到日历中的任何信号?

如果是的话,方法是什么?请帮帮我:)。

 public IList<Event> CalendarLoad(string username="", string userid="", string userpassword="")
    {
        scopes.Add(CalendarService.Scope.Calendar);
        UserCredential credential;
        using (FileStream stream = new FileStream("client_secrets.json", FileMode.Open, FileAccess.Read))
        {
            credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
                    GoogleClientSecrets.Load(stream).Secrets, scopes, username, CancellationToken.None,
                    new FileDataStore("Calendar.VB.Sample")).Result;
        }

1 个答案:

答案 0 :(得分:0)

定期轮询日历,您可以use push notifications在日历更改时接收更新。