0
Google Data .NETライブラリを使用しています。フォルダID(例えば、ブラウザからコピーして貼り付けることができるフォルダ)のURLを指定すると、そのフォルダのアクセス制御リストを取得して変更できるようにしたい。GoogleドキュメントAPIを使用してURLのみを持つフォルダのACLを取得する
私はこのようFolderQuery使用することができます:
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);
だけフォルダの内容を返します。私はそのフォルダ自体が欲しい。
提案がありますか?
ありがとうございます!