google-calendar

Nullreferenceexception when adding a GData.Extensions.Reminder to Reminders

Hello again, I think the title says it all. I'm using Reminder fifteenMinReminder = new Reminder(); fifteenMinReminder.Minutes = 15; fifteenMinReminder.Method = Reminder.ReminderMethod.email; entry.Reminders.Add(fifteenMinReminder); on a brand new entry (where Reminder and Reminders are Nothing), but I cannot add a reminder using the ...

Getting event start times using Zend_Gdata for Google Calendars

I've been trying to retreive the start times of Google Calendar events with the following code: $query = $service->newEventQuery(); $query->setUser($calUser); $query->setVisibility('private'); $query->setProjection('full'); $query->setOrderby('starttime'); $query->setSortOrder('ascending'); $query->setFutureevents('true'); try { $e...

Use Google Calendar UI but showing only filtered events

I have just started using Google Calendar API (using Python client). I'm basically developing a web app for a school with Django. What I'd like to achieve is something like this: To make things simple for now, I have 1 Google account and all events will be created in the calendar under that account (this is the school calendar). The ca...

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/'; $secure = false; $session = true; return (Zend_Gdata_AuthSub::getAuthSubTokenUri($next, $scope, $secure, $session)); } $authSubUrl =...

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. ...

OAuth in Google Data API using Java

Does anyone know any web application example where Oauth has been used in with google data API? ...

Webscraping Google tasks via Google Calendar

As gmail and the task api is not available everywhere (eg: some companies block gmail but not calendar), is there a way to scrap google task through the calendar web interface ? I did a userscript like the one below, but I find it too brittle : // List of div to hide idlist = [ 'gbar', 'logo-container', ... ]; // Hiding b...

setUserCredentials from Google data api is stuck

Well, since I am facing some issues with OAuth implementation, I decided to go back to normal method where users will input their login id and password and I will use them in my code to validate their google account to fetch calendar information. So when user enters login id and password, the page is getting stuck. When I check the code,...

Using Gdata Calendar API for PHP App to create a calendar system with event ownership

Hello, I'm working on a PHP app, and I'm trying to find the best way to set up a calendar system. First let me describe the intended function of the system: The application has multiple users who can login simultaneously. Each user should be able to add their own events and display them on their "profile." Also, on another page, the ev...

Google Calendar feed api deleted events

I'm syncing the Google Calendar with my application (I store events in a database). When an event is updated I can easily find the last updates by sorting the event feed on the 'updated' order. However, if an event is removed / deleted, how can I track this update from the feed? ...

Google calendar query returns at most 25 entries

I'm trying to delete all calendar entries from today forward. I run a query then call getEntries() on the query result. getEntries() always returns 25 entries (or less if there are fewer than 25 entries on the calendar). Why aren't all the entries returned? I'm expecting about 80 entries. As a test, I tried running the query, deleting t...

Need a sample code to use google calendar in asp.net

Please tell me how to use google calendar in asp.net. i needs a sample code for scheduling in google calendar using asp.net. ...

Explain error in code using fullcalendar control to show Google calendar

It's giving me error "Line: 13 Error: Object doesn't support this property or method " please tell me what is problem in my code : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html> <head> <link rel='stylesheet' type='text/css' href='../fullcalendar.css' /> <script ...

Android: post event in google calendar

Hi, I need post the event in google calendar from my android app. I downloaded gdata-library v.2.1, but can't find any documentation for that. ...

PHP CURL Google Calendar using Private URL

I'm trying to get an array of events from Google Calendar using the Private URL. I read the Google API document but I want to try doing this without using the ZEND library since I have no idea what the eventual server file structure is and avoid having other people edit the codes. I also did a search before posting and ran into the sam...

Google Calendar iframe width

I have a Google calendar in my web page, inserted via iframe. But some of the events don't fit in the width I gave the iframe - and the width can't be changed. I would like there to be an inner scroll, or that I could play around with the right/left position of the content, but of course I can't apply CSS to the contents of an iframe. D...

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 the generated source only works if you pick one of the ~70 standard Google Calendar bg colors. (I can tweak the "border" selector because...

How do I obtain the current or next event from google calendar using google API?

Introduction I am attempting to replace an "on-call" cell phone which is carried by the on-call programmer on their assigned day. If there is an emergency the help desk calls that cell phone. We are now planning to switch to a web form which the help desk will fill out in emergency instead. When the form is submitted the script wil...

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){ if(document.cookie.length>0){ c_start=document.cookie.indexOf(c_name + "="); if(c_start!=-1){ c_start=c_start + c_...

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) ...