Как получить оставшееся хранилище учетной записи Google Picasa с помощью API?
Я использовал этот код, но не увидел ни одного тега 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);