7,326 questions
0
votes
0
answers
33
views
Service Account Not able to create Google Calendar event with Attendees
I've created a service account on Google Console, and assigned it to Google Cloud Run Service. I think I've got most of it working, if I don't run it with Attendees. If I add attendees, it throws an ...
0
votes
1
answer
175
views
Is it possible to get Google Calendar API access token directly from Firebase GoogleAuthProvider?
I'm using Firebase Authentication to log in users with Google in my web app. I want to access Google Calendar API on behalf of the user.
Currently, Firebase gives me a Firebase ID token and a ...
0
votes
0
answers
41
views
Publish group google calendar event via google script
Through the google calendar publish event interface, it is possible to copy an URL link which can be used by others to see that event, if they have access to the calendar.
Google Calendar Publish ...
4
votes
1
answer
118
views
Google Calendar API: update() does not apply recurrence changes for some events
I'm trying to update the recurrence rule of a recurring event in Google Calendar using the Python SDK.
Specifically, I want to extend the event by changing the UNTIL date in the RRULE and calling ...
0
votes
1
answer
176
views
Google Calendar cid=<ICS URL> shows “Unable to add calendar. Check the URL.” — but the same ICS works via “From URL”
I’m trying to give users a one-click Add to Google Calendar link using the documente pattern:
https://calendar.google.com/calendar/r?cid=\<URL-ENCODED_ICS_URL>
However, Google consistently ...
1
vote
2
answers
89
views
Fetching overridden events from Google Calendar
I have a Google Apps Script to automate the description of Google Calendar events. The script runs once a week and tries to fetch, and modify, the occurrence for the week to follow.
The code to find ...
0
votes
0
answers
132
views
Google Calendar API refresh token stops working after 1 hour – requires user to reconnect
I’m integrating Google Calendar using OAuth2.
During testing, I noticed that refresh tokens stop working after about an hour.
Issue behavior:
If I connect the calendar and use the token to create a ...
3
votes
1
answer
234
views
Why does auth.authenticate_user() in Google Colab not give access to my personal Google Calendar?
I’m trying to access my Google Calendar events from Google Colab using the Google Calendar API.
from google.colab import auth
from googleapiclient.discovery import build
import google.auth
import ...
2
votes
1
answer
341
views
`google.auth` python SDK not reading granted scopes from credentials file
I've run:
gcloud auth application-default login --client-id-file google_oauth_client_id.json --scopes="https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/calendar....
0
votes
0
answers
48
views
Google Calendar Recurring event messes up on DST days
When creating a weekly recurring event via the google calendar API (calendar.events.insert) ex. Every week on day X at 1:00 - 11:00 AM, it works just fine, except on the DST day where it will be 1:00-...
1
vote
1
answer
94
views
Multiple Attendees for Automated Calendar Invite via Sheets
I hitting an error when I try to add multiple attendees via my spreadsheet. It works with one but when I try comma-separate to include multiple attendees it throws an error:
Error ...
0
votes
0
answers
67
views
I can't add a custom duration time to an calendar event in appsheet (+ google calendar)
I'm trying to make a custom amount of time for the duration of an event in my calendar view, this view is associated to a google calendar and when the event is created then is automatically added an ...
0
votes
0
answers
42
views
Service accounts cannot invite attendees without Domain-Wide Delegation of Authority - but NOT inviting any
Getting this error when Patching an event with new attendees. BUT we are NOT inviting attendees (sendNotifications is false, and sendUpdates = 'none').
We cannot do Domain Wide Delgation (nor do we ...
0
votes
0
answers
63
views
How to verify a Chrome Extension that uses Google Calendar API without owning a domain?
I'm developing a Chrome Extension (non-commercial, open-source) that extracts information from Gmail messages and creates Google Calendar events.
To avoid the “This app is unverified” warning, I'm ...
0
votes
0
answers
73
views
Google Calendar API keeps returning empty result set with events.list
I have Google Calendar with multiple events, both single and recurring. Occasionally I run a script to refresh it by deleting all existing events and adding new ones, using the Google Calendar API.
To ...