Zend_Service_Flickr provides several ways to get information
about Flickr users:
userSearch(): Accepts a string query of space-delimited tags and an optional second parameter as an array of search options, and returns a set of photos as aZend_Service_Flickr_ResultSetobject.getIdByUsername(): Returns a string user ID associated with the given username string.getIdByEmail(): Returns a string user ID associated with the given email address string.
Example 801. Finding a Flickr User's Public Photos by E-Mail Address
In this example, we have a Flickr user's e-mail address, and we search for the
user's public photos by using the userSearch() method:
<?php
$flickr = new Zend_Service_Flickr('MY_API_KEY');
$results = $flickr->userSearch($userEmail);
foreach ($results as $result) {
echo $result->title . '<br />';
}




