要在Google日历上插入任务,我正在使用here中的代码。
Task task = new Task { Title = "New Task"};
task.Notes = "Please complete me";
task.Due = "2010-10-15T12:00:00.000Z";
Task result = service.Tasks.Insert(task, "@default").Fetch();
Console.WriteLine(result.Title);
它工作正常,我正在通过gmail帐户获取任务列表和任务。
我想要的是,我想允许我的ATS
中的用户在他们的google account
中插入任务。我该如何实现?另外我该如何在Google找回更新的任务呢?
感谢您的早日答复。