-
Notifications
You must be signed in to change notification settings - Fork 2
Setup Google Apps Script
Oscar Cortez edited this page Aug 9, 2022
·
2 revisions
- Go to the following URL with the Google account you want to setup https://www.google.com/script/start/ and click on "Start Scripting":
- Now click on "New Project":
- Copy the
events.gs
code. - Paste the code in the editor and be sure to update the
Calendar Ids
list with the IDs get got from the previous step.
- On the left side click on "Services", then select the "Calendar API", and finally save it:
- Click on "Implement" and select the "New Implementation" option:
- On the configuration modal, click on the "select type" config and select "Web Application", now in the "Who has access" select "Everyone"
- This will allow to retrieve our calendar information without the needed of having an authenticated request, or a Google account.
- Click on save, wait until the setup completes, and then grant the access to your data to the app.
- Once its done and you've already granted the permissions to the app, copy the URL returned and click on "Done":
- Paste the URL in the
endpoint
key for yourneocal
config (config.ini).
That's it.