我正在遍历从 Pingdom 的“获取详细检查信息”-API 返回的解码 JSON。我正在尝试在 JSON 数据中打印 URL,但我很难这样做。
这是我得到的 JSON 响应:
{
"check" : {
"id" : 85975,
"name" : "My check 7",
"resolution" : 1,
"sendtoemail" : false,
"sendtosms" : false,
"sendtotwitter" : false,
"sendtoiphone" : false,
"sendnotificationwhendown" : 0,
"notifyagainevery" : 0,
"notifywhenbackup" : false,
"created" : 1240394682,
"type" : {
"http" : {
"url" : "/",
"port" : 80,
"requestheaders" : {
"User-Agent" : "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)"
}
}
},
"hostname" : "s7.mydomain.com",
"status" : "up",
"lasterrortime" : 1293143467,
"lasttesttime" : 1294064823
}
}
这是我应该打印 URL 的 Perl 代码:
my $decoded_info = decode_json($json) or die "Failed to decode!\n";
foreach my $check( $decoded_info->{check}) {
print "$decoded_info->{$check}->{type}->{http}->{url}\n";
}
我已经阅读了 Perl 参考和教程,但它仍然不起作用。