Calendar-api: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 3: | Line 3: | ||
== Google calendar == | == Google calendar == | ||
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 == | ||
Revision as of 13:02, 26 January 2016
Overview
Calendar API 내용 정리.
Google calendar
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 />