Query: webservice::youtube
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
WebService::YouTube(3pm) User Contributed Perl Documentation WebService::YouTube(3pm)NAMEWebService::YouTube - Perl interface to YouTubeVERSIONThis document describes WebService::YouTube version 1.0.3SYNOPSISuse WebService::YouTube; my $youtube = WebService::YouTube->new( { dev_id => 'YOUR_DEV_ID' } ); # Get videos via REST API my @videos = $youtube->videos->list_featured; # Get videos via RSS Feed my @videos = $youtube->feeds->recently_added;DESCRIPTIONThis is a Perl interface to YouTube API and RSS. See Developers Page <http://youtube.com/dev> and About RSS <http://www.youtube.com/rssls> for details. This module support only Legacy API, does not support YouTube Data API based on Google data protocol. See YouTube Data API Overview <http://code.google.com/apis/youtube/overview.html> for details.SUBROUTINES/METHODS new(\%fields) Creates and returns a new WebService::YouTube object. %fields can contain parameters enumerated in "ACCESSORS" section. videos( ) Returns a WebService::YouTube::Videos object. feeds( ) Returns a WebService::YouTube::Feeds object. ACCESSORS dev_id Developer ID ua LWP::UserAgent objectDIAGNOSTICSNone.CONFIGURATION AND ENVIRONMENTWebService::YouTube requires no configuration files or environment variables.DEPENDENCIESClass::Accessor::Fast, WebService::YouTube::Videos, WebService::YouTube::FeedsINCOMPATIBILITIESWWW::YouTubeBUGS AND LIMITATIONSNo bugs have been reported. Please report any bugs or feature requests to "bug-webservice-youtube@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebService-YouTube>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.AUTHORHironori Yoshida <yoshida@cpan.org>LICENSE AND COPYRIGHTThis module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. perl v5.10.1 2010-08-01 WebService::YouTube(3pm)