Hi all,
I can perfectly create/update/delete events on my calendar with this excellent library
Now, I need to synchronize the same google calendar account on 2 devices.. where both of them can create/update/delete events
The performance synchronizing them with the "requestSync" method is not acceptable because we need it to be almost at the same time.. so, I'm doing some test sending push messages between both devices to do that
When I'm updating/deleting an event on device A, I send a push message to device B to do the task at the same time
Everything is Ok creating events (CreateEvent)
But.. for UpdateEvent and DeleteCalendarEntry, I have to pass the EventID as a parameter
I noticed that the EventID is different for the same event, on different devices (I'm not sure, but.. I guess that the EventID is an internal ID on each device)
Somebody knows if there is an "unique EventID" looking at some Google Calendar property, instead of looking into each device?
Thanks very much
I can perfectly create/update/delete events on my calendar with this excellent library
Now, I need to synchronize the same google calendar account on 2 devices.. where both of them can create/update/delete events
The performance synchronizing them with the "requestSync" method is not acceptable because we need it to be almost at the same time.. so, I'm doing some test sending push messages between both devices to do that
When I'm updating/deleting an event on device A, I send a push message to device B to do the task at the same time
Everything is Ok creating events (CreateEvent)
But.. for UpdateEvent and DeleteCalendarEntry, I have to pass the EventID as a parameter
I noticed that the EventID is different for the same event, on different devices (I'm not sure, but.. I guess that the EventID is an internal ID on each device)
Somebody knows if there is an "unique EventID" looking at some Google Calendar property, instead of looking into each device?
Thanks very much