Hi I am having trouble accessing Picasa web albums by album name. I have album name 'My Test Album'. If I use that name (including the spaces) the Album name is not found. I am using the zend-gdata library.
Here is my code that works: // Construct the query $query = $this->photos->newAlbumQuery(); $query->setUser( "default" ); $query->setAlbumName( "MyTestAlbum" ); //This works fine Here is the code that doesn't work: // Construct the query $query = $this->photos->newAlbumQuery(); $query->setUser( "default" ); $query->setAlbumName( "My Test Album" ); // This album not found I need users to be able to enter the name of their album to retreive their photos. How do I know what characters to remove? Many Thanks Ian -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-picasa-data-api/-/vZVdJDLLey4J. 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.
