I have an application where I am creating a Google Calendar and am adding a lot of events to it, all at once. It seems that the Google Calendar API doesn't allow me to add events to the calendar locally and then insert the calendar with a request, or add multiple events with a single request. So I have to usually make 40 requests in a loop to add all my events, which usually results in me getting a response of "rate limit exceeded"...
Is there any way I can achieve this?