vote up 1 vote down star

My Code:

foreach (PicasaEntry entryAlbuns in feedAlbuns.Entries)
{                
   AlbumAccessor ac = new AlbumAccessor(entryAlbuns);
   PhotoQuery photos = new PhotoQuery(PicasaQuery.CreatePicasaUri("admin@localhost", ac.AlbumTitle));
   PicasaFeed feedPhotos = service.Query(photos);
}

When debugger step in line PicasaFeed feedPhotos = service.Query(photos); get an error

The remote server returned an error: (404) Not Found.

Check parameters accepted:

alt text

PS: Because security reasons i replaced my email account to admin@localhost.

flag

50% accept rate
Perhaps the API is down? – Sam Saffron Jul 1 at 0:13
1  
I don't know if is down, but if remove ac.AlbumTitle from parameter, api get me all images in all albuns. But not work with albumtitle filter. – pho3nix Jul 1 at 9:04

1 Answer

vote up 0 vote down

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);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.