Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道是否有办法在日历事件中检索位置?看起来 api 目前只允许用户查看事件的标题和开始/结束日期。我希望能够看到会议室的位置。谢谢!
Outlook 日历 REST API
当您查询活动时,您将始终获取位置以及组织者、与会者、...
试试下面的 api,例如:
https://outlook.office365.com/api/v2.0/me/calendarview?startDateTime=2017-07-01T00:00:00Z&endDateTime=2017-07-31T23:59:59Z&$top=10
或者如果您知道事件 ID,那么您可以使用以下 api:
https://outlook.office365.com/api/v2.0/me/events/[eventID]