gcal

Is there a way to programmatically import ICS into Google Calendar?

我是研究僧i 提交于 2019-12-31 08:43:08
问题 I don't see any obvious way to import ICS files into Google Calendar from the API docs here: http://code.google.com/apis/calendar/developers_guide_protocol.html And I'd greatly prefer not to have to parse them myself just to send the appointments into GCal. I'm looking for a programmatic solution, not something like import plugins for Thunderbird, Outlook, etc. Third party APIs to do the ICS parsing are acceptable, in any language. Any ideas? 回答1: I have created a simple open source .net

OAuth2/Google CalDAV - List of calendars for user

巧了我就是萌 提交于 2019-12-22 11:26:16
问题 I used to request caldav servers to give all defined calendars for a given user. That works with fruux/ownCloud(Sabre) and also GCalendar the classic method. The request is this: method: PROPFIND headers:Depth: 1 urlstr:https://www.google.com/calendar/dav/{theUserName}@gmail.com/ contentType:application/xml content: <d:propfind xmlns:d="DAV:" xmlns:cs="http://calendarserver.org/ns/" xmlns:c="urn:ietf:params:xml:ns:caldav"> <d:prop> <d:resourcetype /> <d:displayname /> <cs:getctag /> <c

Parse private gcal JSON object with FullCalendar

拈花ヽ惹草 提交于 2019-12-11 13:36:47
问题 I wonder how I can provide FullCalendar a private gcal JSON feed. I know it is possible to provide a public gcal url, so I would like to either hack the gcal.js to manipulate the JSON object instead of the url, or manually transform my JSON object to comply with FullCalendar's JSON format. So shall I follow one of this ways (and how) or is there any other alternative? Thanks 回答1: I think at this point the docu is a little bit fuzzy . You do not need to publish your calendar, but you have to

FullCalendar-Scheduler Google Calendars ResourceIDs Query

那年仲夏 提交于 2019-12-11 08:33:51
问题 Reference: FullCalendar 3.9.0, FullCalendar-Scheduler 1.9.4 Can anyone confirm whether or not it is possible to group Google calendar events by resource? Adding a resourceId parameter to a calendar source as follows: var myCalSrc = { id: 1, googleCalendarId: '<myCalSrcURL>', color: '<myCalSrcColor>', className: '<myCalSrc-events>' }; results in a blank display. The following note in the FullCalendar-Scheduler gcal.html file located in the demos directory states: /* NOTE: unfortunately,

Is any google calendar api for iphone sdk?

风流意气都作罢 提交于 2019-12-08 23:34:33
问题 Is there any google calendar api for iphone sdk, currently I develop an iphone calendar native application. In this application i want to sync with google calendar from both side. So i want to know is there any google calendar api for this work. I found iphone-gcal-example but it shows errors because it has missing GData Source files. Is there any other example which sync or add events to google calendar. Thanks in advance. 回答1: There are official APIs from Google in Objective-C which work on

OAuth2/Google CalDAV - List of calendars for user

五迷三道 提交于 2019-12-06 11:36:28
I used to request caldav servers to give all defined calendars for a given user. That works with fruux/ownCloud(Sabre) and also GCalendar the classic method. The request is this: method: PROPFIND headers:Depth: 1 urlstr:https://www.google.com/calendar/dav/{theUserName}@gmail.com/ contentType:application/xml content: <d:propfind xmlns:d="DAV:" xmlns:cs="http://calendarserver.org/ns/" xmlns:c="urn:ietf:params:xml:ns:caldav"> <d:prop> <d:resourcetype /> <d:displayname /> <cs:getctag /> <c:supported-calendar-component-set /> </d:prop> </d:propfind> Moving to Google OAuth2 has different calls, the