google-calendar

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? require_once dirname(__FILE__).'/../../../Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata'); Zend_Loader::loadClass('Zend_Gdata_HttpCl...

How do i retrieve all recently updated events in Google Calendar?

Hi Everyone, I am currently working on a Google Calendar Sync Feature which is supposed to sync with our own Calendar app and to the Google Calendar app. Now I need to identify the recent changes in Google Calendar so I can copy these events into our Calendar App. I use the zend gdata however any idea I would appreciate. ...

Gcal api throwing error

Hi, I am using zendgdata library for google calendar. I am getting this error while using this function createQuickAddEvent(it add events to the the google calendar). Code of this function is: /** * Creates an event on the authenticated user's default calendar using * the specified QuickAdd string. * * @param Zend_Http_Client $c...

How to post calendar event to participant's specific calendar

I am working Calendar API (Java). My specific requirement is I want to add participant to event and at the same time want to specify the participants calendar. Let us say I have 2 users. User-A and User-B User-A is creating calendar event and adding User-B as participant User-A's calendar is Cal-A and User-B's calendar is Cal-B. Now w...

Add exception to recurring event using google calendar api in PHP

Using the Zend Gdata Calendar classes, how can I add an exception to a recurring event? $orig = $evtFeed[0]; //the original recurrence $ex = $gc->newEventEntry(); //gc is a Zend_Gdata_Calendar object $ex->originalEvent = $gc->newOriginalEvent($orig->getId(), $orig->getLink('self')->href, $gc->newWhen('2009-09-23T15:00:00.000Z')); $ex->...

Google Calendar Adding Task and Refresh of Embeded

I found that embeded Calendar is view oriented, so looks like the only way to add tasks being on not google website is add it through service, and each time reload iframe with Google Calendar. Is that how it should work or I'am missing something? ...

Best way to implement a Calendar interface using Google Cal feeds for events?

I'm building a site for my school as a pet project, which would include accounts for all students. I want to display a calendar for each student that should have the following features: It should be able to import events from multiple Google Calendar feeds. Compatibility with either the XML, ICAL or HTML feed will do. It should be able...

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, but after that it should be automatic. In order to avoid conflicts with other events they have scheduled, I want to create a new calendar cal...

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 missing about this process. To get a single calendar's event feed (or to search that feed) I do the following: Authenticate (obviously) Get a...

Google Calendar Feed - Only Show Today's Events

Hi Everyone, This is my first post here at stackoverflow. My question is how to change the google calendar feed so that it only shows events for the current day automatically? Basically what I want to do is output the feed onto a webpage that only shows events for today. The feed would change day by day. I've done something similar ...

Deselected Google Calendars in Embedded Calendar

Morning all, I was wondering if there was a special parameter I could pass into my embedded Google Calendar so that by default only some of the calendars are shown. But the other calendars are still available to be selected. Thanks for the help! ...

How can I insert a new Event for non primary Calendar using gdata.js ?

I am using gdata.js for inserting new Event. I am able to insert only user's primary calendar. The primary Calendar Feed uri is http://www.google.com/calendar/feeds/default/private/full Which feed uri can I use for insert a new event other than primary calendar. Thanks in advance. ...

Google Calendar like ASP.Net Event Calendar

How can we create a google calendar like control in asp.net or can anyone suggest any free/cheap components to achieve this? I've found several in codeproject but none of them do quite what I want. Edit: i found it on my own: thanks to the clubsite starter kit from asp.net http://www.asp.net/downloads/starter-kits/club/ ...

I need help parsing a PHP array for an embedded Google Calendar

I'm not sure I'm headed on the right path but what I want to do is have an embedded Google Calendar with multiple calendars encoded in the iframe source. Example: <iframe src="https://www.google.com/calendar/embed?src=cjvssf4vj98hoa4os5hr26fmcg%40group.calendar.google.com&amp;amp;src=cjvssf4vj98hoa4os5hr26fmcg%40group.calendar.google.co...

Google Calendar .ics import Standards

I have a .ics file that I generate from our database that works correctly in iCal, but is flaky in Google Calendar. Sometimes Google Calendar will import the file, but it does not pick up all the events. Does anyone have any tips on the REQUIRED fields that Google needs? I am at a loss here as to why sometimes it won't import, or why ...

Developing a Firefox extension for Google Calender

Hi, I am actually not so sure if it is possible but It would be great for me to have a firefox add-on to add/remove/edit/delete for google calender. Is there any blog entry or a reference documents about this ? Thanks in advance ...

Direct Appointment Google Calendar via URL

Social media is being used nowadays to spread the word of certain newspost bij one-click, the site i'm currently working on is a museum. They have activities on certain days, the idea is that there will be a google calendar link as well to immediately post the activity on the calendar when interested. Now I've been searching the net a b...

Java and Google Calendar

I would be shocked if this were immediately answered here, as this is a question specific to the Google Calendar Java API, but I'll put it out there anyway. The tutorials for Google Calendar give a nice explanation of Calendar Insertion as well as Event Insertion. However, I would really like to create a calendar on my server, add even...

Updating all instance of a recurring event in Google Calendar API

What is the proper way to update all (or a subset) of the instances of a recurring event? Also related: how do you, given the id of the original event, get the instances of that event? ...

Google Calendar with Sql Server DB

Is it possible to associate a sql server database with a google calendar i.e. have the calendar read from and update the db? ...