Sending email notifications for Events via Google Calendar API

前端 未结 3 624
庸人自扰
庸人自扰 2021-01-18 05:14

I\'m using the calendar.events.insert API to add an Event to my Calendar via the PHP client. The event is being inserted correctly along with appropriate va

3条回答
  •  隐瞒了意图╮
    2021-01-18 05:31

    @linaa is correct. Just ran into this issue myself.

    In JS, this would look like:

    var request = gapi.client.calendar.events.insert(
        sendNotifications: true,
        {
                  // request body goes here
        }
    );
    

提交回复
热议问题