A free calendar web application from Google that allows users to create, track, and remind people of important events.
16
votes
4answers
22k views
Is there a way to programmatically import ICS into Google Calendar?
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 ...
9
votes
3answers
2k views
How to create Task using Google Calendar API
I want to create Task in Google Calendar using Google Calendar API.Using C#.
Looking for some sample codes.
8
votes
3answers
2k views
Getting Google Calendar events in PHP
I'm in the process of creating a blog for somebody. They want to pull in a lot of data and integrate it quite tightly into the design, so standard widgets are a no-no. That's been fine until now.
...
8
votes
1answer
1k views
Does anyone know any gems/plugins/tutorials related to exporting events to iCal, Google Calendar, Outlook from a Rails application?
I am trying to figure out if there is already a plug in that does the interaction with iCal, Google APIs that I can use or do I need to just get my hands dirty and write it myself.
If anyone knows ...
7
votes
1answer
2k views
AuthSub target path prefix does not match the provided “next” URL
I am trying to use the Gcal API in PHP.
I am using the ZEND framework
function getAuthSubUrl($company)
{
$next = "http://$company.mysite.com";
$scope = 'http://www.google.com/calendar/feeds/';
...
7
votes
1answer
7k views
CalDav on Outlook?
I'm looking for a good way to view CalDav calendars within Outlook. I'm aware of the OpenConnector (www.openconnector.org) project, but have not been happy with it thus far (re: stability issues ...
7
votes
2answers
941 views
Building a calendar service on top of Google Calendar
I'm building an app with a calendar element to it. I'm considering building this piece of my app with the Google Calendar APIs. The APIs are everything I could dream of for interacting between ...
6
votes
1answer
118 views
How can I produce a synchronisable calendar for web and mobile devices (natively)?
I have built a web application in PHP using CodeIgniter. The application is based heavily around a calendar that allows the user to add, edit and remove events to that calendar.
One of the major ...
6
votes
2answers
688 views
How to create recurring calendar events?
I am using asp mvc 3, jquery full calendar, ms sql sever 2008 and c#.
I am wondering if anyone knows how to make recurring events?
I am unsure how to make them.
For instance in google calendar ...
6
votes
2answers
771 views
What is the best way to access Google Calendar from ruby?
I'm writing an app for a company that uses Google Calendar internally and would need to use events they already have in their calendar in the app. So I need to get read only access to their calendars ...
6
votes
3answers
3k views
How to post a Google Calendar in a web page without using <iframe>?
Google Calendar provides a way to insert your Google Calendar into a web page using an <iframe>. Is there a way to insert this data into a web page without having to use the <iframe>?
I know ...
5
votes
1answer
219 views
Google Calendar API v3 - How to obtain a refresh token (Python)
I am trying to write a Django app which creates events in a specific Google calendar. So far I have been successful. There is only a little problem:
I don't know how to obtain a refresh token with ...
5
votes
1answer
383 views
Google Calendar API: Editing a single occurrence of a recurring event
Using the Google Calendar API, how can I edit a single occurrence of a recurring event? (the web interface allows me to do that)
5
votes
2answers
1k views
Google Calendar API: How to get a CalendarEntry for the default Calendar?
I'm trying to get the 'normal' url for a users default calendar feed (e.g. http://www.google.com/calendar/feeds/jo@gmail.com/private/full). I would like to use the jo@gmail.com part of the URL as a ...
4
votes
2answers
99 views
Using PHP to parse a Google Calendar XML - End date is off by a day
I am trying to make a webpage and have the next three events on a Google Calendar show up on the home page. I have been using this PHP (http://james.cridland.net/code/google-calendar.html) to access ...
4
votes
2answers
171 views
How to know if my Calendar is shared to public in CalendarEntry
In the CalendarEntry class what is the field that correspond to the share property?
I want to know if the calendar I own is public or not and if the "Share only my free/busy information (Hide ...
4
votes
4answers
227 views
How can I reformat a CSV file into a Google Calendar Format?
So after doing some research I was able to find the format I need to get the CSV File into
Subject,Start Date,Start Time,End Date,End Time,All Day Event,Description,Location,Private
The issue is, ...
4
votes
1answer
475 views
Procedure for using OAuth tokens on Google App Engine
I have an application with a client side running on Android and the server deployed on the Google App Engine. The application will make use of the users Google Calendar data and needs to authenticate ...
4
votes
1answer
1k views
Full google calendar integration with Rails 3 site
I need to integrate my rails 3 application with google calendar. The following are requirements of the application:
Within my application I can create calendar events and invite people (pretty much ...
4
votes
2answers
214 views
Querying Distinct Events from Google Calendar
Right now I have a very simple query that pulls up entries that have a string and a specific date range.
EventQuery eQuery = new EventQuery(calendarInfo.Uri.ToString());
eQuery.Query = ...
4
votes
2answers
2k views
How to develop application for Android which uses Google Calendar API
I just started doing some Android app development and I decided I'm going to write app to work with Google Calendar.
First problem that came to me is that I can't add any gmail account on the ...
4
votes
2answers
718 views
DotNetOpenAuth with Google Calendar Feed
I have been racking my brain for a few days trying to get a list of calendars from Google using DotNetOpenAuth.
I can successfully get a list of contacts using the DotNetOpenAuth Samples. I have ...
4
votes
4answers
535 views
Gdata JavaScript Authsub continues redirect
I am using the JavaScript Google Data API and having issues getting the AuthSub script to work correctly. This is my script currently:
google.load('gdata', '1');
function getCookie(c_name){
...
4
votes
2answers
281 views
Is the Google Calendar API appropriate for my problem?
I'm currently working with a team on a project that will serve as a campus-wide event calendar for my school. We're designing it to be a web application using JSP having a java back end and connected ...
4
votes
2answers
3k views
Google calendar API : Selecting/Creating calendars?
So I want our work calendar to automatically sync with each employee's Google Calendar when the scheduling manager posts/updates the schedules. Users would initially opt-in using the AuthSub token, ...
4
votes
2answers
1k views
Google calendar - Showing recurring events like normal events
I'm trying to show a list of the next 20 days' events from a Google calendar account. Infuriatingly recurring events aren't being shown (I assume because their start times are old)... So. Any ideas?
...
4
votes
1answer
919 views
Adding recurring event to Google Calendar via XML
I am trying to add a recurring event to my calendar via the Protocol API. I took the syntax of the recurrence tag from an event I created in Google's interface and used that in my create request. ...
4
votes
3answers
5k views
Google Calendar API: java.lang.ClassNotFoundException: com.google.common.collect.Maps
I am creating a fairly simple Java client that connects to my account and gets all the events. Here I am getting an exception saying :
java.lang.ClassNotFoundException: ...
3
votes
2answers
364 views
Google Calendar API OAuth2 Troubles on Android Honeycomb
I am working on an Android Honeycomb (v3.0) application that has a requirement of communicating with the Google Calendar API. I would like to allow my application to access a particular Google ...
3
votes
1answer
384 views
How do I use Google's “Simple API Access key” to access Google Calendar info (PHP)?
I'm trying to use the Google API v3 to access one google calendar and according to the documentation here : http://code.google.com/apis/calendar/v3/using.html#intro and here : ...
3
votes
1answer
227 views
Data sync between database and google calendar
I would like to sync my db (tasks on my db, that have a decription, a date, a start time and an end time, and a user) with Google calendar.
For sync with google i plan to use these components (of ...
3
votes
1answer
411 views
Synchronize SalesForce calendar with Google Calendar
Does anyone know how to synchronize SalesForce calendar with Google Calendar without using 3rd party apps or services like Appirio?
Any guidance or links to websites would be appreciated, preferably ...
3
votes
2answers
319 views
How do I create a link to add an entry to an calender?
I'm working for this nightclub and are currently making a website for them, they've got lots events and their site is built a lot around events, today they make an facebook event of every event but it ...
3
votes
2answers
304 views
google calendar api start-min/start-max not returning proper values
i'm querying google calendar api to bring back dates between the start-min and start-max dates that i provide. however, in doing so, i am getting dates that shouldn't be returned. the calendar i'm ...
3
votes
1answer
2k views
Android: How to interface with Google Calendar?
I am building an app for Android 2.1 that provides notifications based on calendar events. But I'm aware there are issues with the Calendar API not being readily available / stable / whatever.
What ...
3
votes
2answers
227 views
How do you think the “Quick Add” feature in Google Calendar works?
Am thinking about a project which might use similar functionality to how "Quick Add" handles parsing natural language into something that can be understood with some level of semantics. I'm interested ...
3
votes
2answers
553 views
Any Way to Further Customize Embedded Google Calendar?
I'd like to embed a few Google Calendars for my client's web site. The "Google Embeddable Calendar Helper" provides very few customization options. Updating the hex code for the background color in ...
3
votes
1answer
326 views
Google Calendar(sharing)
I'm working with a Google Apps application. Actually, I want to the access another id without using a password for that. I used OAuth and it's working well. But I am not able to share the particular ...
3
votes
1answer
808 views
google calendar java api
I have an object of CalendarEntry
I know that http://www.google.com/calendar/feeds/example@gmail.com/allcalendars/full is the feed url of all calendars
but how I can get this feed url from ...
3
votes
2answers
892 views
Getting Zend_GData Feed for a Specific Google Calendar
I had a long detailed question about how to get a specific calendar's event feed, but figured (I think) a solution out before I posted. However, even with the solution I'm left wondering what I'm ...
3
votes
7answers
4k views
.NET Google Calendar API Sort Events by Date
I have been reading the docs and playing with different EventQuery parameters for days now. I am using C# .NET with google's .net api to get the events from a public calendar I set up. I can get the ...
2
votes
0answers
31 views
How to use Google Calendar's “Private Address” with gdata.calendar.service?
There are several examples online describing how to use the gdata.calendar.service (I mistakenly wrote "client" here) class to log in to a calendar with an email address and a password. Is there a way ...
2
votes
0answers
23 views
sync event with google calendar from android
im trying to add events to android calendar
which will sync these events automaticlly to google calendar
but its not working !!
events added manualy do sync but events added from my code, appears in ...
2
votes
1answer
25 views
How can i retrieve all synced calendars from iphone in custom app?
I want to show the user what are the calendars they synced and using in their iPhone or iPad. I spent more time to searched result for my question. But, i can't get the correct solution for my ...
2
votes
1answer
110 views
Android Calendar API insert recurring event
Using the Google Calendar Api.
After browsing the rfc2445, I'm still unable to set recurrence on an event.
private String[] days = {"SU", "MO", "TU", "WE", "TH", "FR", "SA"};
private String rrule ...
2
votes
1answer
239 views
How do I make the new Google calendar event text wrap around using CSS?
I can't read the full title of my Google Calendar events, because they're truncated to fit in the day box. And so a printout isn't as useful as it could be.
There used to be a greasemonkey plugin ...
2
votes
0answers
45 views
How do I simply parse a public Google calendar?
I have been able to parse the events from a Google calendar for a specific date using the AndroidSaxParser for the rss format. However, there are several extra pieces of information I cannot seem to ...
2
votes
1answer
103 views
JavaScript pass mouseenter event to element that is underneath another element
I'm trying to build a little calendar app sort of like Google Calendar. I'm trying to create events with a click and drag functionality so that the events align to a grid. I'm trying to
tie the ...
2
votes
1answer
67 views
Google Cal API Python : Multiple delete whith ExecuteBatch failure
I try to delete all the events of a calendar using the Google API for python.
If I delete the events one by one this works fine but it's very long and not unoptimized so I try to do the same thing ...
2
votes
1answer
218 views
webcal:// Format - Export to Google Calendar/iCal
I've a home-made php based web calendar which I would like my users to import into Google Calendar, iCal, etc. so they have up-to-date information available on their calendar of choice. I understand ...