我需要从与我的移动日历同步的特定电子邮件ID中提取事件。
我可以获取所有不受特定电子邮件ID限制的事件。
如何从特定邮件ID中获取事件。任何帮助都应该对我有很大的帮助。
try {
using (var client = new WebClient())
{
client.DownloadFile("url", "C:/1.zip");
}
} catch(Exception e) {
Debug.WriteLine(e + "DDDD");
}
答案 0 :(得分:0)
在特定的Gmail上,我们可能会有多个calenders
及其活动。一个是primary calender
,其他是secondary calenders
。您可以使用google calender api列出用户(gmail)的所有日历并获取每个特定日历的所有事件。这是我过去几天所做的一些常见操作,可能会在某些方面帮助你。