I tried to set the eventId on google calendar v3 api in Java, but it gave me 400 error with \"message\": \"Invalid resource id value.\". Is there any way to set the event Id of
I dont know why you cant set the id manually, I recently do that, because I wanted to know the id to retrieve it later. and I dont have any problem. probably you are doing it wrong.
Event event = new Event();
event.setId("cita1");
client.events().insert("primary", event).execute();