コレクションの名前を変更しようとしていますが、エラーが発生しますが、
com.google.gdata.util.InvalidEntryException: 無効なリクエスト URI
、これは私が持っているコードです
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);
これはそれを行う方法ですか、それとも私が間違っているのですか?