使用Windows Live REST API创建会议

时间:2014-12-11 01:10:51

标签: c# rest windows-phone-8 windows-live

我尝试使用Windows Live REST API(适用于Windows Phone 8)在Outlook.com上创建会议。 我能够创建一个包含事件对象(http://msdn.microsoft.com/en-us/library/hh243648.aspx#event)所有基本字段的日历条目,但我无法找到将组织者和与会者添加到活动中的方法。

有一种方法可以使用未为事件结构指定的任何键吗? 例如,我看到在联系对象中可以包含一个用户对象,即使没有指定到结构中(它写在表下)。

这是我现在使用的结构:它有效,可能对其他人有用(正如我所说,缺少组织者和与会者):

IDictionary<string, object> appointment = new Dictionary<string, object>();
appointment.Add("name", "event");
appointment.Add("description", "a meeting");
appointment.Add("start_time", "2014-11-19T23:37:00+01:00");
appointment.Add("end_time", "2014-11-27T02:37:00+01:00");
appointment.Add("location", "somewhere");
appointment.Add("is_all_day_event", false);
appointment.Add("reminder_time", 15); //minutes
appointment.Add("availability", "free");
appointment.Add("visibility", "public");

0 个答案:

没有答案