Replies: 1 comment
-
Probably late to the party but currently this package does not support sending batch requests. Creating a job + queue worker (or Horizon) works well for this purpose, just be aware that you might get some rate limiting from Google API depending on the speed of your API calls. From my experience, updating let's say 365 events in a row (for instance for a daily recurrent event for 1 year) kinda works if you manage to delay a bit your jobs You'd want to stay below 5 requests / second so you should delay a bit your job dispatch. Here is the documentation about API rate limiting: As for implementing batch requests in this package here is the documentation to send batch requests: |
Beta Was this translation helpful? Give feedback.
-
Hi,
This is just a question, not an issue, sorry, but am I able to insert multiple events by batch to Google Calendar? Or do I need to do them one by one? And if I need to do them one by one, I'm assuming I can create a job for this and add a queue worker. Would that be an acceptable way to go about it? Thank you for your help.
Beta Was this translation helpful? Give feedback.
All reactions