my $responce = $rpc->call ("blogger.getUsersBlogs",$key,$username,$password);
use Data::Dumper; $Data::Dumper::Indent= 1;
print Dumper $responce;
this will show you the data inside the '$responce' reference.
access the info using methods mentioned above.
for more, see
'perldoc perlref'
~jerry