Help for this page

Select Code to Download


  1. or download this
    my $json = to_json( { myData => \@AoH } );
     
    ...
    my $response = $ua->request($request);
    
    print $response->content, "\n";
    
  2. or download this
    print header;
    
    ...
    my $decoded_json = decode_json( $json );;
    
    print Dumper $decoded_json;