Picasa API for C# error

Posted by pho3nix on Stack Overflow See other posts from Stack Overflow or by pho3nix
Published on 2009-06-30T23:48:03Z Indexed on 2010/04/01 9:53 UTC
Read the original article Hit count: 675

Filed under:
|
|
|

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.

© Stack Overflow or respective owner

Related posts about c#

Related posts about google