https://<server_name>/getparam?h1=hello&h2=goodbye
get 'getparam' => sub {
my $c = shift;
print $c->param('h1') . "\n"; # THIS WORKS AS I WOULD EXPECT
my @list_of_all_params = $c->param; # DOES NOT WORK and THIS IS WHAT I WOULD LIKE TO MAKE WORK
return 1;
};
So all I actually want is for @list_of_all_params to contain "h1" and "h2" which is the params passed using the: https://<server_name>/getparam?h1=hello&h2=goodbye
Thank you to everyone in-advance!
Perhaps