
Net::Google::PicasaWeb::MediaEntry - represents a single Picasa Web photo or video

my @photos = $album->list_photos;
for my $photo (@photos) {
print "Title: ", $photo->title, "\n";
print "Summary: ", $photo->summary, "\n";
print "Author: ", $photo->author_name, " (", $photo->author_uri, ")\n";
$photo->fetch_content( file => 'photo.jpg' );
}

Represents an individual Picasa Web photo.

This is the title of the photo.
This is the summary description of the photo.
This is the author/owner of the photo.
This is the URL to get to the author's public albums on Picasa Web.
This is a link to the Net::Google::PicasaWeb::Media object that is used to reference the photo itself and its thumbnails.
This is the ID of the album that the photo belongs to.

Lists tags used in the albums.
This method takes the "STANDARD LIST OPTIONS" in Net::Google::PicasaWeb.
Lists comments used in the albums.
This method takes the "STANDARD LIST OPTIONS" in Net::Google::PicasaWeb.

Andrew Sterling Hanenkamp, <hanenkamp at cpan.org>

Copyright 2008 Andrew Sterling Hanenkamp
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.