Also, while I'm asking, has anyone successfully moved a photo between two 
albums using the Java API? I'm doing the following:

String feedUrl = API_PREFIX + "default";

AlbumEntry destinationAlbum = new AlbumEntry();


destinationAlbum.setTitle(new PlainTextConstruct("New Album"));

destinationAlbum.setDescription(new PlainTextConstruct("Automatically created 
Album"));

destinationAlbum = service.insert(new URL(feedUrl), album);


photo.setAlbumId( destinationAlbum.getId() );

photo.update();


But whenever I do this, I get an exception saying that the albumID is invalid. 
I'm creating the album in the same way as I do elsewhere when I can 
successfully upload images. 


What am I missing? Anyone got a working code sample?

-- 
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 http://groups.google.com/group/google-picasa-data-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to