
WebService::YouTube - Perl interfece to YouTube

This document describes WebService::YouTube $Revision: 139 $

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

This 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.

Creates and returns a new WebService::YouTube object. %fields can contain parameters enumerated in "ACCESSORS" section.
Returns a WebService::YouTube::Videos object.
Returns a WebService::YouTube::Feeds object.
Developer ID
LWP::UserAgent object

This is deprecated. Please use "parse_xml" in WebService::YouTube::Videos.
This is deprecated. Please use "list_featured" in WebService::YouTube::Videos.
This is deprecated. Please use "get_details" in WebService::YouTube::Videos.
This is deprecated. Please use "parse_rss" in WebService::YouTube::Feeds.
This is deprecated. Please use "recently_added" in WebService::YouTube::Feeds.
This is deprecated. Please use "recently_featured" in WebService::YouTube::Feeds.
This is deprecated. Please use "top_favorites" in WebService::YouTube::Feeds.
This is deprecated. Please use "top_rated" in WebService::YouTube::Feeds.
This is deprecated. Please use "most_discussed_month" in WebService::YouTube::Feeds.
This is deprecated. Please use "most_discussed_today" in WebService::YouTube::Feeds.
This is deprecated. Please use "most_discussed_week" in WebService::YouTube::Feeds.
This is deprecated. Please use "top_viewed" in WebService::YouTube::Feeds.
This is deprecated. Please use "top_viewed_month" in WebService::YouTube::Feeds.
This is deprecated. Please use "top_viewed_today" in WebService::YouTube::Feeds.
This is deprecated. Please use "top_viewed_week" in WebService::YouTube::Feeds.

Some method have been deprecated in Version 0.02.

WebService::YouTube requires no configuration files or environment variables.

Class::Accessor::Fast, WebService::YouTube::Videos, WebService::YouTube::Feeds


No 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.

Hironori Yoshida <yoshida@cpan.org>

Copyright (c) 2006, Hironori Yoshida <yoshida@cpan.org>. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.