Calendar-api: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
== Google calendar == | == Google calendar == | ||
=== Event === | |||
https://developers.google.com/google-apps/calendar/v3/reference/events | |||
=== CalendarList === | |||
Calendar list sample. | |||
<pre> | |||
{ | |||
"kind": "calendar#calendarListEntry", | |||
"etag": etag, | |||
"id": string, | |||
"summary": string, | |||
"description": string, | |||
"location": string, | |||
"timeZone": string, | |||
"summaryOverride": string, | |||
"colorId": string, | |||
"backgroundColor": string, | |||
"foregroundColor": string, | |||
"hidden": boolean, | |||
"selected": boolean, | |||
"accessRole": string, | |||
"defaultReminders": [ | |||
{ | |||
"method": string, | |||
"minutes": integer | |||
} | |||
], | |||
"notificationSettings": { | |||
"notifications": [ | |||
{ | |||
"type": string, | |||
"method": string | |||
} | |||
] | |||
}, | |||
"primary": boolean, | |||
"deleted": boolean | |||
} | |||
</pre> | |||
== See also == | == See also == |
Latest revision as of 13:14, 26 January 2016
Overview
Calendar API 내용 정리.
Google calendar
Event
https://developers.google.com/google-apps/calendar/v3/reference/events
CalendarList
Calendar list sample.
{ "kind": "calendar#calendarListEntry", "etag": etag, "id": string, "summary": string, "description": string, "location": string, "timeZone": string, "summaryOverride": string, "colorId": string, "backgroundColor": string, "foregroundColor": string, "hidden": boolean, "selected": boolean, "accessRole": string, "defaultReminders": [ { "method": string, "minutes": integer } ], "notificationSettings": { "notifications": [ { "type": string, "method": string } ] }, "primary": boolean, "deleted": boolean }
See also
- https://developers.google.com/google-apps/calendar - Google Calendar API
References
<references />