我想从Office365获得所有房间/资源。 我找不到通过o365 Api获得房间的方法。
当我查看其他stackoverflow问题时,Office EWS似乎是获得房间的唯一方法。 我试过了,但我没有得到任何结果......
任何想法为什么?有没有其他方法来获得房间?
这是我的代码:
var y = await this.getAccessToken();
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013);
service.TraceEnabled = true;
service.TraceFlags = TraceFlags.All;
service.HttpHeaders.Add("Authorization", "Bearer " + this.currentAccessToken);
service.PreAuthenticate = true;
service.SendClientLatencies = true;
service.EnableScpLookup = false;
service.Url = new Uri("https://outlook.office365.com/EWS/Exchange.asmx");
EmailAddressCollection myRoomLists = service.GetRoomLists();