Can anyone type here picaso pagination api as i am new in this. 

I am using right now.
$gp = new Zend_Gdata_Photos($client, "Google-DevelopersGuide-1.0");
 $query = $gp->newQuery("https://picasaweb.google.com/data/feed/api/all";);

// looking for photos in the response
$query->setParam("kind", "photo");

// full text search
$query->setQuery("goldendoodle");

// maximum of 10 results
$query->setStartIndex("29");
$query->setMaxResults("10");

// There isn't a specific class for representing a feed of community
// search results, but the Zend_Gdata_Photos_UserFeed understands
// photo entries, so we'll use that class
$userFeed = $gp->getUserFeed(null, $query);
foreach ($userFeed as $photoEntry) {
    echo $photoEntry->getTitle()->getText() . "<br />\n";
    // The 'alternate' link on a photo represents the link to
    // the image page on Picasa Web Albums
    $path = $photoEntry->getLink('alternate')->getHref();
echo $path;
echo '<img src="'.$path.'" />';
    echo "<br />\n";
}

but this gives me album key and id and link not for images link.

-- 
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