如前所述,我目前无法在Microsoft Exchange中获取每个房间的容量。
下面是我的代码displays the room id, displayName, start time and end time的一部分。但是无论我在哪里搜索,room capacity属性都是无处可寻的。
const data = calendarEvent.map((event: microsoftgraph.Event) => {
return {
id: event.id,
title: event.location.displayName,
capacity: event.location.roomCapacity, //(I know this isn't a real graph property) But in theory this is what I am trying to, but I am unable to find a property that has the name capacity.
allDay: false,
start: new Date(event.start.dateTime + "z"),
end: new Date(event.end.dateTime + "z"),
}
});我试过查看ms,/v1.0/me/events仍然没有称为容量的属性。https://developer.microsoft.com/en-us/graph/graph-explorer
https://stackoverflow.com/questions/74431148
复制相似问题