I am working on a web application where you can basically create event and join events of others people.
When people log in, they can link their accounts with their Google Agenda.
When people are doing some updates from my app, everything is ok. But not, when they do it from their Google Agenda account.
So, I would like to find a way to update the events on my app when users are editing the event directly from their Google Agenda.
I have thought of doing it in the following way but I don't know if it is possible :
- create a Service Account which has a specific mail address (let's call it service@account.com)
- each time an event is created on my web app, the email service@account.com also receive the event
- in that way, each time the organizer change the event (date, location, or delete it), the service@account.com receive the information (mail with new ICS)
- then, i would send the information on my web app to change the event accordingly
Is it possible to do it that way ? I know I could also create an Chrome Extension or a Google Calendar Add-On, but with the way I just described I was thinking also doing it for the Outlook Calendar.
Thank you for your advices