Skip to content
farrelley edited this page Sep 14, 2010 · 3 revisions

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

Clone this wiki locally