Help for this page

Select Code to Download


  1. or download this
    my @bookIDList = qw(abc ghj zxc bnm qwe rty iop sdf ert);
    my $param = = {
                     IDs => [ @bookIDList ],
    
  2. or download this
    my $param = = {
                     IDs => \@bookIDList,
    
  3. or download this
    my $param = = {
                     IDs => [ qw(abc ghj zxc bnm qwe rty iop sdf ert) ], 
                     sort => "AUTHOR",
                     maxResults => 100
                  };