Subject: | friends_from_profile only returns the first page of results |
Date: | Thu, 10 Apr 2008 04:04:10 -0700 |
To: | bug-WWW-Myspace [...] rt.cpan.org |
From: | "Lars Bell" <larsbell [...] gmail.com> |
The code below only returns the first page of friend ids instead of the 20
pages worth as expected.
btw my perl is v5.8.7 for MSWin32-x86-multi-thread
thanks
----------
use WWW::Myspace;
my $account = 'my@email.com;;
my $password = 'mypass';
my $myspace = WWW::Myspace->new($account, $password);
my $This_ID = 3053;
my @friends = $myspace->friends_from_profile(
source => 'profile',
id => $This_ID,
start_page => 1,
end_page => 20,
max_count => 500
);
print "@friends";