I want to migrate my calendar from exchange server to Google calendar, I fetched exchange server's XML now I have to pass that XML to google calendar's python code so that my calendar can be set, Now my question is how can i convert my exchange server's XML to Google's compatible XML?
...
I am using Google Calendar as a storage engine for a calendar system I am building, however, I am using a single Google user account with multiple calendars, i.e. each user on my system has their own calendar within the one user account.
I'm able to create a calendar per user just fine, but I would like to have FullCalendar retrieve the...
Hi all. I am new to java. I need to integrate with google calendar form my java allpication.But it gives the Exception message : Error connecting with login URI.I use the following code for connect with google.
CalendarService myService = new CalendarService("CalendarService");
myService.setUserCredentials("[email protected]", "K...
I want to view events over specific time range for a specific calendar, but am having trouble using the API, It is a generic API, and it reminds me of using the DOM. The problem is that it seems difficult to work with because much of the information is in generic base classes.
How do I get the events for a calendar using Groovy or Java...
The mobile view of Google Calendar is really great, but I would like to be able to have it for one calendar ONLY, rather than all of the calendars I use. This would be so that I could create a webapp where a user could visit a URL and see a mobile view of a certain calendar, without the user having to add it to his calendars.
What is th...
I am writing an Outlook add-in which sync with Google calendar.
EventID of Outlook calendar is in binary format which I can convert
into HEX string (contains characters between 0-9/A-F). I wanted to
know whether Google calendar eventID is HEX string or not. So that I
can directly store Outlook calendar eventID in Google calendar and
vice...
Hello,
I'm creating a custom calendar app that is using Google Calendar as a base. I am wondering if there is a way through the Zend Gdata library to manage calendar sharing. From the documentation it does not appear so, but I noticed that some other languages have the ability (.Net, Python). If it's not possible through Gdata, is the...
Hi,
I am using Google API Version 2 fo .NET to create Google Calendar Entries.
How can we set "Privacy" (Default,Public,Private) in Google Calendar ?
Thanx
...
Hi,
I am using Google API Version 2 fo .NET to create Google Calendar Entries. How can we set
"Add guests" in Google Calendar ?
Thanx
...
Hi,
I am using Google API Version 2 fo .NET to create Google Calendar Entries. How can we set
"Where" in Google Calendar ?
Thanx
...
Hi,
I am using Google API Version 2 fo .NET to create Google Calendar Entries.
How can i add "Attachment" to Google Calendar?
Thanx
...
I'm having a strange problem with the Google Calendar API (through PHP with Zend_Gdata.) On the calendar in question I have several recurring events starting in March:
2010-04-19 9:30 - 16:00
2010-04-20 10:00 - 15:30
2010-04-21 9:30 - 16:00
2010-04-22 10:00 - 15:30
2010-04-23 9:30 - 12:30
Each of these repeats indefinitely but h...
I have successfully saved all the events from my custom calendar to Google calendar with PHP script. But whenever i try to sync same calendar again, i see all the events are recreated & duplicated. Is their any Google Calendar API clue that might help remove the duplication?
Please help.
Regards.
...
Hi,
I am migrating Calendars to Google Apps using Google API Version 2 for .NET as below:
EventEntry entry = new EventEntry();
entry.Title.Text = "Test Calendar";
When eventTime = new When(StartDate, EndDate, false);
I am setting : :
StartDate = {6/18/2010 3:00:00 PM}
EndDate = {6/18/2010 4:00:00 PM}
But after migration...
I'm trying to figure out how to add a series of events to a non-default calendar (and remove some) as a batch, but there's no hint of how to do it in Google's frankly awful documentation.
Has anyone cracked this nut or does anyone know where there is actually useful documentation on using the Google Calendar API?
...
I'm trying to get an ical feed working with Google Calendar and I just can't seem to get it right. I'm using the PHP iCalcreator class (http://www.kigkonsult.se/iCalcreator/index.php) and here's the code I'm using:
<?php
require_once APP_ROOT . '/lib/icalcreator.class.php';
$user = new User;
$user->Get(1);
$v = new vcalendar(); // cr...
Hi,
I am using Google API Version 2 fo .NET to create Google Calendar Entries.
How can we set "Description" in Google Calendar ?
Thanx
...
Hi guys :)
I'm trying to write a simple method, that gets events from Google calendar. The problem is that if i'm trying to call getTimes() on my events, i get an Indexoutofbounds exception.
I just can't figure out what the problem is.
Thanks in advance :)
jTextArea1.setText("");
try {
CalendarService myService = new...
I have setup a google calendar using the gcal.js from fullcalendar which displays a month view easilty enough.
What I really want to do is display this calendar in a single day or agenda view instead of the default month view but I cannot for the life of me find any reference to whether this is possible.
...
Hi!
I'm trying to generate ics-files, see sample here: http://deap.nu/myprogram.ics
It validates alright here: http://severinghaus.org/projects/icv/
but when trying to import it into a google calendar I get the message
"Failed to import events: Unable to process your ical/CSV file."
which isn't very informative. I've tried to slim the...