我想从 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();