patrickrock has asked for the wisdom of the Perl Monks concerning the following question:
returns this (from the dumper function):use Net::Amazon; use Net::Amazon::Request::Wishlist; use Data::Dumper; $token = 'token'; $wishid = 'wishid'; my $ua = Net::Amazon->new(token => $token); my $req = Net::Amazon::Request::Wishlist->new(wishlist => $wishid); # Response is of type Net::Amazon::Response::Wishlist my $resp = $ua->request($req); printer Dumper($resp);
etc...$VAR1 = bless( { 'xmlref' => { 'Details' => [ { 'ReleaseDate' => '01 F +ebruary, 2003', 'Upc' => '636920004479 +', 'NumMedia' => '1',
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: traversing a list of objects
by simonm (Vicar) on Dec 07, 2004 at 21:11 UTC | |
|
Re: traversing a list of objects
by ikegami (Patriarch) on Dec 07, 2004 at 21:27 UTC | |
by dragonchild (Archbishop) on Dec 08, 2004 at 13:32 UTC | |
|
Re: traversing a list of objects
by BrowserUk (Patriarch) on Dec 07, 2004 at 21:13 UTC | |
|
Re: traversing a list of objects
by IOrdy (Friar) on Dec 08, 2004 at 13:20 UTC |