Picasa API for C# error
- by pho3nix
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:
PS: Because security reasons i replaced my email account to admin@localhost.