Skip to content Skip to sidebar Skip to footer

Google Apps Script - Createevent Function Not Creating Calendar Event

We are trying to create an online form using Google Forms to take requests for appointments. This is what the process should look like: User fills form and submits their informati

Solution 1:

A simple onEdit() trigger cannot do anything that requires authorization. It doesn't matter who owns the document the script is in; if it's a simple trigger, then it's anonymous.

Instead, use an installable trigger. (You can simply rename your function, then go through the instructions in Managing Triggers Manually to set it up.)

Post a Comment for "Google Apps Script - Createevent Function Not Creating Calendar Event"