我正在尝试通过perl获取请求。但我得到以下错误:
#!/usr/bin/perl
use lib "/usr/packages/perl/perl-5.16.3/lib/5.16.3";
use strict;
use warnings;
use LWP::UserAgent;
use JSON;
use MIME::Base64;
my $url = 'https://example.com:8443/cli/agentCLI';
my $credentials = encode_base64('username:password');
my $ua = LWP::UserAgent->new(ssl_opts =>{ verify_hostname => 0});
my $response = $ua->get($url, 'Authorization' =>" Basic $credentials");
die 'http status: ' . $response->code . ' ' . $response->message
unless ($response->is_success);
my $json_obj = JSON->new->utf8->decode($response->content);
# the number of rows returned will be in the 'rowCount' propery
print $json_obj->{rowCount} . " rows:n";
# and the rows array will be in the 'rows' property.
foreach my $row(@{$json_obj->{rows}}){
#Results from this particular query have a "Key" and a "Value"
print $row->{Key} . ":" . $row->{Value} . "n";
}
输出(错误):
在agent.pl第21行不推荐使用伪哈希。 在agent.pl第21行没有这样的伪哈希字段“rowCount”。
谢谢, Kalaiyarasan
答案 0 :(得分:0)
见:
http://perldoc.perl.org/5.8.8/perlref.html#Pseudo-hashes%3A-Using-an-array-as-a-hash
在最近的版本中:http://perldoc.perl.org/perlref.html#Pseudo-hashes%3a-Using-an-array-as-a-hash
这已被弃用。我想(但不能告诉你没有你的JSON)你的JSON顶级是一个数组。
Data::Dumper
可以帮助您了解您的实际数据结构。