Tüm albümleri ve fotoğrafları listeleme Zend_Gdata_Photos

0 Cevap php

Ben sadece, çok basit bir şey yapmak tüm albümleri liste, ve sonra her albümün içindeki tüm fotoğrafları listelemek için çalışırken, Google Picasa API erişmek için Zend_Gdata_Photos PHP istemci kullanarak ediyorum. Bu benim kodudur:

$client = Zend_Gdata_ClientLogin::getHttpClient('*****', '*****', Zend_Gdata_Photos::AUTH_SERVICE_NAME);
$gp = new Zend_Gdata_Photos($client);

$userFeed = $gp->getUserFeed('default');
foreach ($userFeed as $albumEntry) {
 echo "<h2>{$albumEntry->title->text} ({$albumEntry->id->text})</h2>";
 $albumFeed = $gp->getAlbumFeed($albumEntry->id->text);
 foreach ($albumFeed as $photoEntry) {
  echo "{$photoEntry->title->text}<br>";
 }
}

O çalıştığında ben $ gp-> getAlbumFeed (...) hattından bu istisna olsun:

Zend_Gdata_App_Exception: No root  element

Ve fikir yanlış ne yapıyorum?

0 Cevap