如何使用API获取Google Picasa帐户的剩余存储空间?
我使用了这段代码,但没有看到任何字节使用的标签
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);
最佳答案
这是一个已有两年历史的问题,但是对于仍然发现的任何人,答案都在这里:
要获得剩余的配额量,请减去
feed / gphoto:quota当前来自feed / gphoto:quota的极限值
在以下供稿中:
https://picasaweb.google.com/data/feed/api/user/username
The word default can be used in place of the username if you're using an authentication token.
取自:
https://developers.google.com/picasa-web/faq#quota
关于c# - 如何使用API获取Google Picasa帐户的剩余存储空间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7117559/