Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > c868486f747f2df34f9a533ef7be0d19 > files > 34

perl-WWW-Myspace-0.60-10.fc16.noarch.rpm

#!/usr/bin/perl -w -I../lib

use WWW::Myspace 0.60;
my $myspace = new WWW::Myspace;

my @ids = $myspace->get_photo_ids;
print "@ids\n";
my $photo_num = int( rand( @ids ) );
my $photo_id = $ids[ $photo_num ];
print "Picked photo number $photo_num, photo_id $photo_id\n";
if ( $myspace->set_default_photo( photo_id => $photo_id ) ) {
	print "Set photo\n";
} else {
    print "Got error: ";
	print $myspace->error . "\n";
};