Reputation: 123
I need to create an event on other person Google calendar (other person calendar declared as public) using jquery / JavaScript through my login credential (API key) or common credential (common API key).
I am able to create an event on my google calendar with my login credential using javascript. But iam struggling to add event on other calendar. Whether it is possible or not. I am new to this environment.
Upvotes: 0
Views: 1508
Reputation: 3782
There are multiple options to add events to people's calendars.
Upvotes: 1
Reputation: 1142
If a calendar is just made public, you will only be able to read the events on it. In order to create new events on that calendar, the calendar needs to be shared with you with the permissions to "Make changes to events". In the UI, this can be done by going to that calendar's settings and going to the "Share this Calendar" tab and explicitly adding the email address of the user that should be able to add events.
Upvotes: 0