如何在 UWP 应用程序中使用 Microsoft Graph API 将房间分配给会议事件

How to assign Room to an Event for meeting using Microsoft Graph API in a UWP App

我正在调用 API 在 fixed date & time 上创建 meeting。我为此使用 Microsoft Graph API。这是 URL

var url = "https://graph.microsoft.com/v1.0/me/events";

我已经处理了身份验证部分,我的代码执行以下操作以将 JSON 响应发送到 API

  private async void sendInvites_Click(object sender, RoutedEventArgs e)
    {
        var httpClient = new System.Net.Http.HttpClient();
        System.Net.Http.HttpResponseMessage response;
        var url = "https://graph.microsoft.com/v1.0/me/events";
        CIBC.Models.SendMeetingInvites.RootObject obj = new CIBC.Models.SendMeetingInvites.RootObject();
        CIBC.Models.SendMeetingInvites.Location loc = new CIBC.Models.SendMeetingInvites.Location();
        loc.displayName = GlobalVariables.MeetingRoomName;
        //loc.RoomEmailAddress = GlobalVariables.meetingRoomEmailID.ToString();

        obj.subject = "Maths";
        CIBC.Models.SendMeetingInvites.Body body = new CIBC.Models.SendMeetingInvites.Body();
        body.content = "Its a booking for follow up meeting";
        body.contentType = "HTML";
        obj.body = body;

        List<CIBC.Models.SendMeetingInvites.Attendee> attens = new List<Models.SendMeetingInvites.Attendee>();
        for(int i=0;i<GlobalVariables.NumberOfParticipant.Count;i++)
        {
            CIBC.Models.SendMeetingInvites.EmailAddress email = new CIBC.Models.SendMeetingInvites.EmailAddress();
            CIBC.Models.SendMeetingInvites.Attendee atten = new CIBC.Models.SendMeetingInvites.Attendee();
            email.address = GlobalVariables.NumberOfParticipant[i].ParticipantADdress;
            atten.emailAddress = email;
            atten.type = "Required";
            attens.Add(atten);
        }
        CIBC.Models.SendMeetingInvites.Start start = new CIBC.Models.SendMeetingInvites.Start();
        start.dateTime = GlobalVariables.sendMeetingInviteStartDate;
        start.timeZone = "UTC";
        obj.start = start;


        CIBC.Models.SendMeetingInvites.End end = new CIBC.Models.SendMeetingInvites.End();
        end.dateTime = GlobalVariables.sendMeetingInviteEndTime;
        end.timeZone = "UTC";
        obj.end = end;
        obj.attendees = attens;
        obj.location = loc;

        string postBody = Newtonsoft.Json.JsonConvert.SerializeObject(obj);
      //  var postBody1 = "{'Subject':'Testing Organizer - 12','Location':{'DisplayName':'Some place'}," +
      //"'Start': {'DateTime': '2016-07-15T15:00:00.0000000', 'TimeZone':'UTC'}," +
      //"'End': {'DateTime': '2016-07-15T15:30:00.0000000', 'TimeZone':'UTC'}," +
      //"'Body':{'Content': 'This is a test of Grap API.', 'ContentType':'Text'}," +
      //"'IsOrganizer':'False','Organizer':{'EmailAddress': " + "{'Address':'organizer@some.com'} }}";

        // var requestString = @"{"subject":"My event","start":{"dateTime":"2017-09-25T07:44:27.448Z","timeZone":"UTC"},"end":{"dateTime":"2017-10-02T07:44:27.448Z","timeZone":"UTC"}}"";

        var request = new System.Net.Http.HttpRequestMessage(System.Net.Http.HttpMethod.Post, url);
            //Add the token in Authorization header
            request.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer",GlobalVariables.Token);
        request.Content = new StringContent(postBody, UTF8Encoding.UTF8, "application/json");
        response = await httpClient.SendAsync(request);
            if (response.IsSuccessStatusCode)
        { }
               // return await response.Content.ReadAsStringAsync();
            else
        {

        }
                //return "";
        }

这是我用来传递给 HTTPResponse Message

的 class 文件
namespace CIBC.Models.SendMeetingInvites
{

    public class Body
    {
        public string contentType { get; set; }
        public string content { get; set; }
    }

    public class Start
    {
        public DateTime dateTime { get; set; }
        public string timeZone { get; set; }
    }

    public class End
    {
        public DateTime dateTime { get; set; }
        public string timeZone { get; set; }
    }

    public class Location
    {
        public string displayName { get; set; }
        //public string RoomEmailAddress { get; set; }
    }

    public class EmailAddress
    {
        public string address { get; set; }
        public string name { get; set; }
    }

    public class Attendee
    {
        public EmailAddress emailAddress { get; set; }
        public string type { get; set; }
    }

    public class RootObject
    {
        public string subject { get; set; }
        public Body body { get; set; }
        public Start start { get; set; }
        public End end { get; set; }
        public Location location { get; set; }
        public List<Attendee> attendees { get; set; }
    }
}

我的要求是向所有用户发送会议邀请并提及 Room Details like Name& Email ID of the room

我尝试在 Location class

下的请求中添加 RoomEmail 地址
public string RoomEmailAddress { get; set; }

当我使用 Microsoft Graph Explorer 网站对此进行测试时,我收到了错误消息

{ "error": { "code": "RequestBodyRead", "message": "The property 'RoomEmailAddress' does not exist on type 'Microsoft.OutlookServices.Location'. Make sure to only use property names that are defined by the type or mark the type as open type.", "innerError": { "request-id": "1883d87d-a5d6-4357-a699-7c112da0e56b", "date": "2017-09-26T12:03:50" } } }

如何确保无论何时创建 meeting request ,我都可以为其分配 room

目前我只能在将 Request 发送到 URL 时传递 DisplayName。 删除 Email Address property (I added myself ) 后,代码 returns Success.

任何解决方法,以便我可以发送 room email address 也让房间也收到 meeting invite 的副本?

将房间添加为 "type": "Resource" 的与会者。然后在 location 属性.

中添加房间的显示名称