GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Google::PicasaWeb::Album(3) User Contributed Perl Documentation Net::Google::PicasaWeb::Album(3)

Net::Google::PicasaWeb::Album - represents a single Picasa Web photo album

version 0.11

  my @albums = $service->list_albums;
  for my $album (@albums) {
      print "Title: ", $album->title, "\n";
      print "Summary: ", $album->summary, "\n";
      print "Author: ", $album->author_name, " (", $album->author_uri, ")\n";

      $album->fetch_content( file => 'cover-photo.jpg' );
  }

Represents an individual Picasa Web photo album. This class extends Net::Google::PicasaWeb::Feed.

The URL used to get the album information. See "url" in Net::Google::PicasaWeb::Feed.

This is the title of the album. See "title" in Net::Google::PicasaWeb::Feed.

This is the summary of the album. See "summary" in Net::Google::PicasaWeb::Feed.

This is the author/owner of the album. See "author_name" in Net::Google::PicasaWeb::Feed.

This is the URL to get to the author's public albums on Picasa Web. See "author_uri" in Net::Google::PicasaWeb::Feed.

This is the identifier of the album used to look up a specific album in the API. This is the album ID. See "entry_id" in Net::Google::PicasaWeb::Feed.

The goe-coded latitude set on the album. See "latitude" in Net::Google::PicasaWeb::Feed.

The geo-coded longitude set on the album. See "longitude" in Net::Google::PicasaWeb::Feed.

This is a link to the Net::Google::PicasaWeb::Media object that is used to reference the cover photo and thumbnails of it.

This is the size of the album in bytes.

This is the number of photos in the albums.

  my @photos = $album->list_media_entries(%params);

Lists photos and video entries in the album. Options may be used to modify the photos returned.

This method takes the "STANDARD LIST OPTIONS" in Net::Google::PicasaWeb.

The "list_photos" and "list_videos" methods are synonyms for "list_media_entries".

Lists tags used in the albums.

This method takes the "STANDARD LIST OPTIONS" in Net::Google::PicasaWeb.

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

This software is copyright (c) 2011 by Andrew Sterling Hanenkamp.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2011-05-30 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.