Hello, I'm in truble when trying to delete photos, 
I can get the photo (Entry) but when to try to delete I get error: 

'Google.GData.Client.GDataRequestException' occurred in 
Google.GData.Client.dll

Additional information: Execution of request failed: 
https://picasaweb.google.com/data/entry/api/user/{userID}/albumid/{albumID}/photoid/{photoID}/4

I have tried these three ways to delete it:


PicasaEntry ent = (PicasaEntry)ps_Picasa.Get(photoUri);
ps_Picasa.Delete(ent, true);

---------------
PicasaEntry ent = (PicasaEntry)ps_Picasa.Get(photoUri);
ps_Picasa.Delete(ent, false);

---------------
PicasaEntry ent = (PicasaEntry)ps_Picasa.Get(photoUri);
ps_Picasa.Delete(ent.EditUri.ToString());

----------------------
PicasaEntry ent = (PicasaEntry)ps_Picasa.Get(photoUri);
ent.Delete();

I need your help!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-picasa-data-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to