Script does not have permission to perform that action after authorization granted CalendarApp












0















I've been executing a gscript for a couple years now, but just today I started seeing the following when I try to execute it:




The script does not have permission to perform that action. Required
permissions: (https://www.googleapis.com/auth/calendar ||
https://www.googleapis.com/auth/calendar.readonly ||
https://www.google.com/calendar/feeds)




I went ahead and deauthorized my script from my Account permissions page and re-ran the script to force re-auth, but I'm still seeing the error.



The line in question is simply trying to do:



CalendarApp.getDefaultCalendar()


Any idea on how to resolve this issue?










share|improve this question



























    0















    I've been executing a gscript for a couple years now, but just today I started seeing the following when I try to execute it:




    The script does not have permission to perform that action. Required
    permissions: (https://www.googleapis.com/auth/calendar ||
    https://www.googleapis.com/auth/calendar.readonly ||
    https://www.google.com/calendar/feeds)




    I went ahead and deauthorized my script from my Account permissions page and re-ran the script to force re-auth, but I'm still seeing the error.



    The line in question is simply trying to do:



    CalendarApp.getDefaultCalendar()


    Any idea on how to resolve this issue?










    share|improve this question

























      0












      0








      0








      I've been executing a gscript for a couple years now, but just today I started seeing the following when I try to execute it:




      The script does not have permission to perform that action. Required
      permissions: (https://www.googleapis.com/auth/calendar ||
      https://www.googleapis.com/auth/calendar.readonly ||
      https://www.google.com/calendar/feeds)




      I went ahead and deauthorized my script from my Account permissions page and re-ran the script to force re-auth, but I'm still seeing the error.



      The line in question is simply trying to do:



      CalendarApp.getDefaultCalendar()


      Any idea on how to resolve this issue?










      share|improve this question














      I've been executing a gscript for a couple years now, but just today I started seeing the following when I try to execute it:




      The script does not have permission to perform that action. Required
      permissions: (https://www.googleapis.com/auth/calendar ||
      https://www.googleapis.com/auth/calendar.readonly ||
      https://www.google.com/calendar/feeds)




      I went ahead and deauthorized my script from my Account permissions page and re-ran the script to force re-auth, but I'm still seeing the error.



      The line in question is simply trying to do:



      CalendarApp.getDefaultCalendar()


      Any idea on how to resolve this issue?







      google-apps-script






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 19 '18 at 18:58









      Jim SchindlerJim Schindler

      262




      262
























          1 Answer
          1






          active

          oldest

          votes


















          0














          From what error you've encountered, it indicates that the script lacking the authorization needed to run. When a script is run in the Script Editor or from a custom menu item an authorization dialog is presented to the user. However, when a script is run from a trigger, embedded with a Google Sites page, or run as a service, the dialog cannot be presented and this error is shown.



          If the script contains new unauthorized services, you must re-authorize the script. Here's a documentation on how to troubleshoot this type of error in Google Apps Script.



          If a trigger continues to fire and cause this error, you can access your triggers by doing the following:





          1. Select Edit > All your triggers in the Apps Script editor. The resulting dialog shows all active triggers running on your account.

          2. Find the offending trigger in the list.

          3. Click the clear icon next to the trigger name to remove it.

          4. Click Save to record the deletion.


          You can also remove problematic add-on triggers by uninstalling the add-on.







          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',
            autoActivateHeartbeat: false,
            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%2f53381003%2fscript-does-not-have-permission-to-perform-that-action-after-authorization-grant%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









            0














            From what error you've encountered, it indicates that the script lacking the authorization needed to run. When a script is run in the Script Editor or from a custom menu item an authorization dialog is presented to the user. However, when a script is run from a trigger, embedded with a Google Sites page, or run as a service, the dialog cannot be presented and this error is shown.



            If the script contains new unauthorized services, you must re-authorize the script. Here's a documentation on how to troubleshoot this type of error in Google Apps Script.



            If a trigger continues to fire and cause this error, you can access your triggers by doing the following:





            1. Select Edit > All your triggers in the Apps Script editor. The resulting dialog shows all active triggers running on your account.

            2. Find the offending trigger in the list.

            3. Click the clear icon next to the trigger name to remove it.

            4. Click Save to record the deletion.


            You can also remove problematic add-on triggers by uninstalling the add-on.







            share|improve this answer




























              0














              From what error you've encountered, it indicates that the script lacking the authorization needed to run. When a script is run in the Script Editor or from a custom menu item an authorization dialog is presented to the user. However, when a script is run from a trigger, embedded with a Google Sites page, or run as a service, the dialog cannot be presented and this error is shown.



              If the script contains new unauthorized services, you must re-authorize the script. Here's a documentation on how to troubleshoot this type of error in Google Apps Script.



              If a trigger continues to fire and cause this error, you can access your triggers by doing the following:





              1. Select Edit > All your triggers in the Apps Script editor. The resulting dialog shows all active triggers running on your account.

              2. Find the offending trigger in the list.

              3. Click the clear icon next to the trigger name to remove it.

              4. Click Save to record the deletion.


              You can also remove problematic add-on triggers by uninstalling the add-on.







              share|improve this answer


























                0












                0








                0







                From what error you've encountered, it indicates that the script lacking the authorization needed to run. When a script is run in the Script Editor or from a custom menu item an authorization dialog is presented to the user. However, when a script is run from a trigger, embedded with a Google Sites page, or run as a service, the dialog cannot be presented and this error is shown.



                If the script contains new unauthorized services, you must re-authorize the script. Here's a documentation on how to troubleshoot this type of error in Google Apps Script.



                If a trigger continues to fire and cause this error, you can access your triggers by doing the following:





                1. Select Edit > All your triggers in the Apps Script editor. The resulting dialog shows all active triggers running on your account.

                2. Find the offending trigger in the list.

                3. Click the clear icon next to the trigger name to remove it.

                4. Click Save to record the deletion.


                You can also remove problematic add-on triggers by uninstalling the add-on.







                share|improve this answer













                From what error you've encountered, it indicates that the script lacking the authorization needed to run. When a script is run in the Script Editor or from a custom menu item an authorization dialog is presented to the user. However, when a script is run from a trigger, embedded with a Google Sites page, or run as a service, the dialog cannot be presented and this error is shown.



                If the script contains new unauthorized services, you must re-authorize the script. Here's a documentation on how to troubleshoot this type of error in Google Apps Script.



                If a trigger continues to fire and cause this error, you can access your triggers by doing the following:





                1. Select Edit > All your triggers in the Apps Script editor. The resulting dialog shows all active triggers running on your account.

                2. Find the offending trigger in the list.

                3. Click the clear icon next to the trigger name to remove it.

                4. Click Save to record the deletion.


                You can also remove problematic add-on triggers by uninstalling the add-on.








                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 20 '18 at 9:19









                jessjess

                1,076110




                1,076110
































                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381003%2fscript-does-not-have-permission-to-perform-that-action-after-authorization-grant%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







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini