How to access google calendar rest api: https://apidata.googleusercontent.com/caldav/v2/{calendarID}/user without using library function using node.js
I am not able to figure out a proper flow in accessing google calendar rest API’s without using inbuilt methods of googleapis
liberary to modify the event/access them. All the solutions found to acccess google calendar uses in-built methods of googleapis
and also https://developers.google.com/calendar/caldav/v2/guide#connecting_to_googles_caldav_server says we need to perform oauth and then connect.
Google Calendar “Events: list” API “q”-Parameter: A way to disable the automatic title translation?
As per https://developers.google.com/calendar/api/v3/reference/events/list, the q
parameter does the following:
api call fetch multiple calendars of same email with google api calendar
is there a way to in only one api call fetch events from 2 calendars of the same email
like:
Google calendar event does not use colorId that has been set in server
We have system that actually integrates with Google Calendar by creating event there. When create event, we also let user to set the color based on their preference. Technically, we pass colorId when calling Create Event API
CalendarList: list requires unnecessary sensitive scope
I’m building an app that ask a user to select their calendar from calendar list, and then we check for busy slots. We don’t want to access calendars content, yet Google seems to require to use an elevated scope to access https://www.googleapis.com/calendar/v3/users/me/calendarList
.
How to fetch all events from Google Calendar?
The way I proceed, that accessToken
is fetched via refresh token.
Google Calendar API Events watch
I’ve used the Google Calendar API Events watch to create (what I assume should be) a webhook subscription to track updates to Calendar Events for a specific calendar.
How can I purge (completely delete) a Google Calendar Event
I created an event using some test data in Google Calendar’s node API while trying to test out a program I’m building. Now I’m ready to move to the next stage but can’t because when trying to create a new event it says it already exists. When I call get
on the eventId it returns an event with the following info
Google Calendar API create event with just an icon
Using Google Calendar API, we used to be able create events with custom icons (20*20) without any text on the event title. And better yet, it didnt occupy the space in the event list, but the icon was shown at the corner of the date square. I forgot what this feature was called but eventually it got deprecated. If you remember what i mean is there anything similar in google calendar api now? im kinda okay with it now occupying the space on event list, but can we atleast create events with just a small icon as title (and no brackground color)?
Which scope should I use to create google meeting link with google calendar API?
I am confusing between these 2 scopes :
1- https://www.googleapis.com/auth/calendar
2- https://www.googleapis.com/auth/calendar.events
But I need to create google meeting link ONLY.
Which scope should I use ?