Reminder Google Calendar api

I want to access the reminder calendar in my calendar account using the Google Calendar API. I can not find anything in the documentation. When I request a list of my calendars, it gives me every calendar in my calendar account, except for the reminder calendar.

I want to add a reminder using the Google Calendar API.

+7
google-calendar google-calendar-api3
source share
1 answer

You can use your calendar ID to link to this calendar.

  • Go to Google Calendars
  • Go to the calendar settings for the calendar you are trying to specify
  • Scroll down the page and find where the "Calendar Address" is indicated: opposite your calendar ID. Use this in your request. for example, to quickly get events from the calendar use this

    let query = GTLRCalendarQuery_EventsList.query(withCalendarId: "insert your calendar ID here") query.maxResults = 10 query.timeMin = GTLRDateTime(date: Date()) query.singleEvents = true query.orderBy = kGTLRCalendarOrderByStartTime service.executeQuery( query, delegate: self, didFinish: #selector(displayResultWithTicket(ticket:finishedWithObject:error:))) 
0
source share

All Articles