10 messages in com.googlegroups.google-calendar-help-dataapiRe: is this a read-only feed?
FromSent OnAttachments
luke...@googlemail.com01 Apr 2007 09:23 
Ryan Boyd (Google)01 Apr 2007 11:50 
Ryan Boyd (Google)01 Apr 2007 11:59 
brettmoreton211101 Apr 2007 15:01 
brettmoreton211101 Apr 2007 15:02 
Ryan Boyd (Google)01 Apr 2007 15:25 
brettmoreton211101 Apr 2007 16:46 
Kyle Marvin01 Apr 2007 18:19 
metr...@hotmail.com17 Apr 2007 12:03 
metr...@hotmail.com17 Apr 2007 12:24 
Subject:Re: is this a read-only feed?
From:metr...@hotmail.com (metr@hotmail.com)
Date:04/17/2007 12:24:09 PM
List:com.googlegroups.google-calendar-help-dataapi

There is a typo in my previous message: Here is the correct code Note the creator of the calendar has given username/password editor access level

CalendarFeed calFeel=null; CelandarService myService=null;

try{

URL url = new URL ( /*either private OR public strURL */ ); myService = new CalendarService("AccessLevelCalendar"); myService.setUserCredentials(username, password);

new CalendarFeed().declareExtensions(myService.getExtensionProfile()); calFeed = myService.getFeed(url, CalendarFeed.class); }catch( Exception exc ) { ...// use public and exception is thrown }

use public and calFeed.getCanPost() is false ???

Any hint?