I am trying to rename a collection, but I get the error But
com.google.gdata.util.InvalidEntryException: Invalid request URI
, this is the code that I have
DocsService client = new DocsService("test testApp v1");
URL feedUrl = new URL("https://docs.google.com/feeds/default/private/full/folder%3A"+IDFOLDER);
DocumentListEntry newEntry = new FolderEntry();
newEntry.setId(IDFOLDER);
newEntry.setTitle(new PlainTextConstruct(newName));
client.insert(feedUrl, newEntry);
This is the way to do that or what i have wrong ?