I had the same problem.
For Google API 1.2.2.0 Use the AlbumAccessor.Name instead of AlbumAccessor.AlbumTitle. Google should make this more obvious in the documentation.
For Google APL 1.4.0.2 Use the AlbumAccessor.Id instead of AlbumAccessor.AlbumTitle. Google should make this more obvious in the documentation.
Sample Code:
AlbumAccessor ac = new AlbumAccessor(AlbumEntry);
PhotoQuery query = new PhotoQuery();
query.Uri = new Uri(PicasaQuery.CreatePicasaUri(_login,AlbumAccessor.Id));
photoFeed = picasaService.Query(query);
garykindel
2009-08-28 19:37:31