I'm using the Google Data .NET library. Given the URL of a folder (that the user might copy and paste from their browser for example) which includes the folder ID, I want to be able to get the access control list for that folder and make changes.
I can use FolderQuery like this:
DocumentsService ss = new DocumentsService(appname);
ss.setUserCredentials(username, password);
FolderQuery fq = new FolderQuery(folderid);
DocumentsFeed df = ss.Query(fq);
DocumentEntry de = (DocumentEntry)df.Entries[0];
Uri AclUri = new Uri(de.AccessControlList);
but that only returns the contents of the folder. I want the folder itself.
Any suggestions?
Thanks!