Hello!!!
Well... As the title says, once I inserted a new photo into my web
album, I try to update its data as its showed below. After this
process I go to my web album and only appear the Latitud, Longitud and
the keywords updated. The Credit, model and the rights dont appear,
and i really need them to. My code is the following: (Am I doing
something wrong???) ='(
PicasaEntry myPhoto = (PicasaEntry)_servicio.Insert(postUri,
fileStream, "image/jpeg", Path.GetFileName(rutaImagenConMarca));
fileStream.Close();
myPhoto.Etag = "*"; //<- I put this because i had
problems related to the etag when trying to update the photo.
myPhoto.Location = new GeoRssWhere(40.2156, 5.2132); //
Successfully updated
myPhoto.Exif = new ExifTags();
MediaKeywords myTags = new MediaKeywords
{
Value =
CrearTags(datosCliente, etiqueta)
};
myPhoto.Media = new MediaGroup
{
Keywords = myTags, //Successfully
updated
Credit = new MediaCredit
{
Value =
"Myself!" //Not updated!!!! :(
}
};
myPhoto.Exif.Model = new ExifModel
{
Value = "KODAK EASYSHARE C122
DIGITAL CAMERA" //Not updated :(
};
myPhoto.Rights = new
AtomTextConstruct(AtomTextConstructElementType.Rights,
"MyCompany"); //Not updated!!! :(
myPhoto.Update();
--
You received this message because you are subscribed to the Google Groups
"Google Picasa Web Albums API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-picasa-data-api?hl=en.