I have, thanks.
- Steve W.
On Jul 16, 1:08 pm, "Jeff Fisher (Google)" <api....@google.com>
wrote:
Hi,
I think this is the same bug as this report:
http://code.google.com/p/gdata-issues/issues/detail?id=647
Please star it to track its progress.
Cheers,
-Jeff
On Jul 15, 3:32 pm, Steve Wilhelm <stev...@gmail.com> wrote:
I am using the following code to create a Public Album via Zend GData
Photos API.
$albumEntry = new Zend_Gdata_Photos_AlbumEntry();
$albumEntry->setTitle($gp->newTitle($title));
$newAccess = $gp->newAccess();
$newAccess->text = 'public';
$albumEntry->setGphotoAccess($newAccess);
$createdAlbumEntry = $gp->insertAlbumEntry($albumEntry);
echo "createdAlbumEntry = " . $createdAlbumEntry->getGphotoId() . '
' . $createdAlbumEntry->getTitle() . ' ' . $createdAlbumEntry-
getGphotoAccess() . "\n";
After successfully creating the album, the function getGphotoAccess
returns 'private'. When using Web Picasa, the Album is marked
'Unlisted' and does not appear in the Public Gallery.
Is this an known limitation of the Zend GData Photos API or am I doing
something wrong?