How to access shared calendars from Office REST API?

前端 未结 3 789
醉话见心
醉话见心 2020-12-16 05:31

This question has been asked several times and as per answers such as this it seems the API didn\'t support this then until recently as here which mentions that there are ne

3条回答
  •  借酒劲吻你
    2020-12-16 06:14

    A lot of stuff going on here :) However it seems the crux here is that you're expecting /Me/Calendars to include shared calendars. It does not. In order to access someone else's calendar that has been shared, you must access via the /Users//Calendars/ URL.

    So for example if bob@contoso.com logs in, and bill@contoso.com has shared his calendar with him, then:

    • /Me/Calendars would ONLY show calendars in Bob's mailbox
    • /Users/bill@contoso.com/Calendars would show calendars Bill has shared with Bob

    Update: It seems there's a blocking issue on our side. We're working on it.

提交回复
热议问题