Hey @dylan2 ,
Thank you for your quick reply.
We are not using any scopes.
Only the Google Calendar API is enabled.
To ensure the Google Calendar + Offline plugin works correctly, you need to make sure all the necessary permissions (scopes) are enabled for OAuth. Typically, the following standard OAuth scopes are required for interacting with Google Calendar:
-
https://www.googleapis.com/auth/calendar
– Full access to Google Calendar: allows reading, writing, modifying, and deleting events.
-
https://www.googleapis.com/auth/calendar.events
– Access to the calendar events.
-
https://www.googleapis.com/auth/calendar.readonly
– Read-only access to calendar events (use this if you only need to view events without making changes).
-
https://www.googleapis.com/auth/userinfo.email
– Access to the user’s email information.
It looks like you already have the calendar scope enabled (which likely corresponds to https://www.googleapis.com/auth/calendar
), but I recommend checking if the other required scopes are added based on your application’s needs.
Best Regards,
Anton