Creating and Deleting Multiple Events in Google Calendar by Batch Requests using Calendar API with Node.js
These are the sample scripts for creating and deleting multiple events in Google Calendar by batch requests using Calendar API with Node.js.
In the current stage, unfortunately, googleapis for Node.js cannot request batch requests. Ref So, when multiple events are created and deleted in Google Calendar using Node.js, it is required to run the script in a loop. In this case, the process cost becomes high. Ref In this post, I would like to introduce creating and deleting multiple events in Google Calendar using batch request with Node.js.