Microsoft Graph webhooks - subscribe to user calendars









up vote
0
down vote

favorite












I have a problem with my Microsoft Graph webhook subscriptions to /me/events. What I want to do is to subscribe to all user calendars.



First I have created the new app in https://apps.dev.microsoft.com using my personal Microsoft account.
Then in my app I subscribe to /me/events notifications using access token:



POST https://graph.microsoft.com/beta/subscriptions


"changeType": "created,updated",
"notificationUrl": "https://xxxxx.ngrok.io/notification-url",
"resource": "/me/events",
"expirationDateTime": "2018-11-14T09:40:10.933Z",
"clientState": "xxxx-xxxx-xxxx-xxxx"



My notificationUrl receives validation request to which my app responds with 200 OK and validation token. After that the POST request returns me my subscription:




"@odata.context" : "https://graph.microsoft.com/beta/$metadata#subscriptions/$entity",
"id" : "2773aa4c-e983-4d15-9236-xxxxxxxx",
"resource" : "/me/events",
"applicationId" : "d551ec34-8d44-4cc6-9b88-xxxxxxxx",
"changeType" : "created,updated",
"clientState" : "xxxx-xxxx-xxxx-xxxx",
"notificationUrl" : "https://xxxxx.ngrok.io/notification-url",
"expirationDateTime" : "2018-11-14T09:40:10.933Z",
"creatorId" : "00000000000"



This subscription works fine but only for one, default calendar in Outlook. I don't receive any notifications if I create, update events in any other calendars that exists in my account.



What could be the problem here, am I using wrong resource name (/me/events) or this is some limitation for personal accounts in Microsoft Graph?










share|improve this question

























    up vote
    0
    down vote

    favorite












    I have a problem with my Microsoft Graph webhook subscriptions to /me/events. What I want to do is to subscribe to all user calendars.



    First I have created the new app in https://apps.dev.microsoft.com using my personal Microsoft account.
    Then in my app I subscribe to /me/events notifications using access token:



    POST https://graph.microsoft.com/beta/subscriptions


    "changeType": "created,updated",
    "notificationUrl": "https://xxxxx.ngrok.io/notification-url",
    "resource": "/me/events",
    "expirationDateTime": "2018-11-14T09:40:10.933Z",
    "clientState": "xxxx-xxxx-xxxx-xxxx"



    My notificationUrl receives validation request to which my app responds with 200 OK and validation token. After that the POST request returns me my subscription:




    "@odata.context" : "https://graph.microsoft.com/beta/$metadata#subscriptions/$entity",
    "id" : "2773aa4c-e983-4d15-9236-xxxxxxxx",
    "resource" : "/me/events",
    "applicationId" : "d551ec34-8d44-4cc6-9b88-xxxxxxxx",
    "changeType" : "created,updated",
    "clientState" : "xxxx-xxxx-xxxx-xxxx",
    "notificationUrl" : "https://xxxxx.ngrok.io/notification-url",
    "expirationDateTime" : "2018-11-14T09:40:10.933Z",
    "creatorId" : "00000000000"



    This subscription works fine but only for one, default calendar in Outlook. I don't receive any notifications if I create, update events in any other calendars that exists in my account.



    What could be the problem here, am I using wrong resource name (/me/events) or this is some limitation for personal accounts in Microsoft Graph?










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have a problem with my Microsoft Graph webhook subscriptions to /me/events. What I want to do is to subscribe to all user calendars.



      First I have created the new app in https://apps.dev.microsoft.com using my personal Microsoft account.
      Then in my app I subscribe to /me/events notifications using access token:



      POST https://graph.microsoft.com/beta/subscriptions


      "changeType": "created,updated",
      "notificationUrl": "https://xxxxx.ngrok.io/notification-url",
      "resource": "/me/events",
      "expirationDateTime": "2018-11-14T09:40:10.933Z",
      "clientState": "xxxx-xxxx-xxxx-xxxx"



      My notificationUrl receives validation request to which my app responds with 200 OK and validation token. After that the POST request returns me my subscription:




      "@odata.context" : "https://graph.microsoft.com/beta/$metadata#subscriptions/$entity",
      "id" : "2773aa4c-e983-4d15-9236-xxxxxxxx",
      "resource" : "/me/events",
      "applicationId" : "d551ec34-8d44-4cc6-9b88-xxxxxxxx",
      "changeType" : "created,updated",
      "clientState" : "xxxx-xxxx-xxxx-xxxx",
      "notificationUrl" : "https://xxxxx.ngrok.io/notification-url",
      "expirationDateTime" : "2018-11-14T09:40:10.933Z",
      "creatorId" : "00000000000"



      This subscription works fine but only for one, default calendar in Outlook. I don't receive any notifications if I create, update events in any other calendars that exists in my account.



      What could be the problem here, am I using wrong resource name (/me/events) or this is some limitation for personal accounts in Microsoft Graph?










      share|improve this question













      I have a problem with my Microsoft Graph webhook subscriptions to /me/events. What I want to do is to subscribe to all user calendars.



      First I have created the new app in https://apps.dev.microsoft.com using my personal Microsoft account.
      Then in my app I subscribe to /me/events notifications using access token:



      POST https://graph.microsoft.com/beta/subscriptions


      "changeType": "created,updated",
      "notificationUrl": "https://xxxxx.ngrok.io/notification-url",
      "resource": "/me/events",
      "expirationDateTime": "2018-11-14T09:40:10.933Z",
      "clientState": "xxxx-xxxx-xxxx-xxxx"



      My notificationUrl receives validation request to which my app responds with 200 OK and validation token. After that the POST request returns me my subscription:




      "@odata.context" : "https://graph.microsoft.com/beta/$metadata#subscriptions/$entity",
      "id" : "2773aa4c-e983-4d15-9236-xxxxxxxx",
      "resource" : "/me/events",
      "applicationId" : "d551ec34-8d44-4cc6-9b88-xxxxxxxx",
      "changeType" : "created,updated",
      "clientState" : "xxxx-xxxx-xxxx-xxxx",
      "notificationUrl" : "https://xxxxx.ngrok.io/notification-url",
      "expirationDateTime" : "2018-11-14T09:40:10.933Z",
      "creatorId" : "00000000000"



      This subscription works fine but only for one, default calendar in Outlook. I don't receive any notifications if I create, update events in any other calendars that exists in my account.



      What could be the problem here, am I using wrong resource name (/me/events) or this is some limitation for personal accounts in Microsoft Graph?







      microsoft-graph






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 11 at 11:49









      ischenkodv

      3,27812024




      3,27812024






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          When you use /me/events you are going to the default Calendar for the user (per the docs). In your case, you would want to enumerate the user's calendars (GET /me/calendars) then subscribe to each one's events collection, using the resource /me/calendars/calendar-id/events.






          share|improve this answer




















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53248440%2fmicrosoft-graph-webhooks-subscribe-to-user-calendars%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            When you use /me/events you are going to the default Calendar for the user (per the docs). In your case, you would want to enumerate the user's calendars (GET /me/calendars) then subscribe to each one's events collection, using the resource /me/calendars/calendar-id/events.






            share|improve this answer
























              up vote
              1
              down vote



              accepted










              When you use /me/events you are going to the default Calendar for the user (per the docs). In your case, you would want to enumerate the user's calendars (GET /me/calendars) then subscribe to each one's events collection, using the resource /me/calendars/calendar-id/events.






              share|improve this answer






















                up vote
                1
                down vote



                accepted







                up vote
                1
                down vote



                accepted






                When you use /me/events you are going to the default Calendar for the user (per the docs). In your case, you would want to enumerate the user's calendars (GET /me/calendars) then subscribe to each one's events collection, using the resource /me/calendars/calendar-id/events.






                share|improve this answer












                When you use /me/events you are going to the default Calendar for the user (per the docs). In your case, you would want to enumerate the user's calendars (GET /me/calendars) then subscribe to each one's events collection, using the resource /me/calendars/calendar-id/events.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 12 at 14:42









                Jason Johnston

                12.4k1826




                12.4k1826



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53248440%2fmicrosoft-graph-webhooks-subscribe-to-user-calendars%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3