We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Welcome to the Zend-Flickr-Service wiki!
Example Code:
$options = array( ‘apiKey’ => $apiKey, ‘sharedSecret’ => $sharedSecret, ‘authToken’ => $authToken, ); $this→flickr = new My_ServiceFlickr($options);
$methodOptions = array( ‘date’ => ‘2010-05-05’, ‘page’ => 1, ); $jsonData = $this→flickr→stats()→getPopularPhotos($options); $data = Zend_Json::decode($jsonData); ZendDebug::dump($data);