Microsoft图形 API 查找会议时间未正确返回可用会议室



我正在使用findMeetingTimes API,当我需要API向我推荐任何可用的房间时,它总是返回相同的结果。它把最近的房间还给我,即使它不可用。我正在进入其他房间,但它没有归还它们。另外,我在爱尔兰,试图利用爱尔兰的时间。只有 UTC 可用作时间选项。有什么想法吗?

{
    "attendees": [{
            "type": "required",
            "emailAddress": {
                "name": "John Brady",
                "address": "test1@test.com"
            }
        },
        {
            "type": "required",
            "emailAddress": {
                "name": "Micheal Travers",
                "address": "test2@test.com"
            }
        }
    ],
    "locationConstraint": {
        "isRequired": "true",
        "suggestLocation": "true",
        "locations": [{
                "resolveAvailability": "true",
                "displayName": "The Rockefeller Room/THE ROCK PHASE 1",
                "locationEmailAddress": "the.rockefeller.room@test.com"
            },
            {
                "resolveAvailability": "true",
                "displayName": "The Cork Room/THE ROCK PHASE 2",
                "locationEmailAddress": "the.cork.room@test.com"
            },
            {
                "resolveAvailability": "true",
                "displayName": "The Dublin Room/THE ROCK PHASE 2",
                "locationEmailAddress": "the.dublin.room@test.com"
            }
        ]
    },
    "timeConstraint": {
        "activityDomain": "work",
        "timeslots": [{
            "start": {
                "dateTime": "2017-10-23T09:00:00",
                "timeZone": "UTC"
            },
            "end": {
                "dateTime": "2017-10-23T17:00:00",
                "timeZone": "UTC"
            }
        }]
    },
    "meetingDuration": "PT30M",
    "returnSuggestionReasons": "true",
    "MaxCandidates": "10",
    "minimumAttendeePercentage": "100"
} 

同样在这里创建了 2 个用户和 2 个房间,使用 outlook365 网页将一个用户预订到一个房间,并查询了两个房间和两个用户的 API。 4 查询。 我预订的用户在早上无法预订,这是正确的,但另一个用户在同一天早上有两个房间可供选择。显然不起作用。

最新更新