如何使用 API 获取 Google Picasa 帐户的剩余存储空间?
我使用了这段代码,但没有看到任何 bytesused 标签
FeedQuery query = new FeedQuery();
PicasaService service = new PicasaService("xanaxzxzx");
// Set your credentials:
service.setUserCredentials(username, password);
// Create the query object:
query.Uri = new Uri(String.Format("https://picasaweb.google.com/data/feed/api/user/{0}", HttpUtility.UrlEncode(username)));
// Tell the service to query:
AtomFeed calFeed = service.Query(query);