The simplest usage of the Zend_Service_SlideShare component is
the retrieval of a single slide show by slide show ID provided by the slideshare.net
application and is done by calling the getSlideShow() method of
a Zend_Service_SlideShare object and using the resulting
Zend_Service_SlideShare_SlideShow object as shown.
<?php
// Create a new instance of the component
$ss = new Zend_Service_SlideShare('APIKEY',
'SHAREDSECRET',
'USERNAME',
'PASSWORD');
$slideshow = $ss->getSlideShow(123456);
print "Slide Show Title: {$slideshow->getTitle()}<br/>\n";
print "Number of views: {$slideshow->getNumViews()}<br/>\n";




