「エントリ」APIが必要なようです。
Javaで同様の
base = "https://picasaweb.google.com";
user = "101405741057659770470" # myself
albumid = "6333524051829767505"
# must be inside of a function to use locals()
url = "%(base)s/data/entry/api/user/%(user)s/albumid/%(albumid)s" % locals()
gd_client = gdata.photos.service.PhotosService()
entry = gd_client.GetEntry(url)
assert isinstance(entry, gdata.photos.AlbumEntry)
:
String baseURL = "https://picasaweb.google.com";
String userId = "101405741057659770470" // myself
String albumid = "6333524051829767505"
String albumUrl = String.format(
"%s/data/entry/api/user/%s/albumid/%s", baseURL, userId, albumId);
// myService is defined here: https://developers.google.com/picasa-web/docs/2.0/developers_guide_java
AlbumEntry entry = myService.getEntry(new URL(albumUrl), AlbumEntry.class, (DateTime) null /* modified since*/);
フムOKのおかげなので、このための組み込み機能はありませんここで(認証に対処する必要はありません)私は公共のアルバムのためAlbumEntryを得ることができる方法です。 – thyagx
残念ながら、Python APIにはありません。Java APIにのみあります。ただし、[ソースのクローン作成](http://code.google.com/p/gdata-python-client/source/checkout)で簡単に追加できます。 –