Is there any limit for number of events when Google Calendar sync events from an external ICS event feed API - google-calendar-api

I have implemented an API to return ICS event feed which contains nearly 20,000 events. When I create a new google calendar with this API as the URL, the calendar events doesn't sync to the google calendar and it shows empty. If I reduce the number of events in the API to about 1000, google calendar properly sync all the events and show it properly in the calendar.
I couldn't find any such limit for number of events mentioned in Google calendar documentation. Is there such a limit for number of events which can be sync from a feed url to Google Calendar?
Following screenshots shows how I added the feed URL to google calendar.

Related

event name to track user visits in Google analytics 4 measurement protocol

Previously were using universal tracking to track user visits to Google Analytics using python script from the backend application.
Now migrating to Google Analytics 4 and using the Measurement Protocol to send events to record in Google Analytics
Events list reference Lists a few events and required parameters, however, most of them look like e-commerce events. However, I want to record visits to my website.
How should the event name, if it has to be from the predefined list? Or how can I create event names?
Try to use this hit builder: https://ga-dev-tools.web.app/ga4/event-builder/
You can choose Custom as event_category, then you can use page_view as event_name.

Is .ics file VALARM section works with Google calendar?

I have an ics file that has several events and I want to make all subscribers of this calendar to receive notification about the event 10 minutes before the event in Google calendar. Is it possible with VALARM or I need to create a separate calendar with settings via Google API?
I defined two VALARM sections in my .ics file but Google calendar doesn't send me any email or browser notifications anyway:
BEGIN:VALARM
ACTION:DISPLAY
TRIGGER:-PT10M
DESCRIPTION:This is an event reminder
END:VALARM
BEGIN:VALARM
ACTION:EMAIL
TRIGGER:-PT10M
DESCRIPTION:This is an event reminder
END:VALARM
END:VEVENT
END:VCALENDAR
This is not possible to force on your subscribers. If you look at similar possibly duplicate questions, it may be possible for users to get notifications on your events IF
They switch notifications on for the subscribed calendar themselves after subscribing in google calender
OR
the events are imported (not subscribed) AND
the user has notifications switched on in their destination calendar by default.
See also
Sent email with iCal to outlook with valarm reminder
Given ics VALARM properies are not appearing in Google Calendar or Outlook
VALARMs from iCalendars (.ics) not being recognized by Google Calendar

How to fetch all the recurring events based on series master event

How can we get all the recurring events occurrences based on the series master event, from the Outlook Calendar API. We have similar kind of API in Google Calendar API, this is the link.
this is the API link and is working fine

Find who edited google calendar event

We have a shared calender and we want to find out who edited or deleted the event using google calender api. Is there anyway we can find out this?
You need Calendar audit log.
Track calendar notifications and view changes to your users’
calendars, events, and subscriptions
You can follow the steps provided to find out who have made changes in you public calendar.
Using the API, you can visit Calendar Activity Events.

how to google APIs for creating events on google calendar?

anybody know how to create and event on Google calendar using calendars api?
my users connect to my site using Google , I got a permission from them to write in their calendars then when user attend event on my site i need to crate an event on his/her calendar on gmail?
Checkout the full google calendar api
https://developers.google.com/google-apps/calendar/v1/developers_guide_javascript

Resources