perl lwp 响应信息

来源:互联网 发布:在手机淘宝怎么卖东西 编辑:程序博客网 时间:2024/05/16 07:34
[root@dr-mysql01 ~]# cat hcp.pl use LWP::UserAgent; $ua = LWP::UserAgent->new; @header = (    'accept'=> "application/json",    'content-type'=> "application/json",    'apix-key'=> "e7b00871640c49567a37566ccd5c27e9",    'User-Agent' => "Mozilla/8.0"    );$start = $ARGV[0];$end = $ARGV[1];$date = $ARGV[2];$host="http://a.apix.cn/apixlife/ticket/rest?from=$start&to=$end&date=$date";$request = HTTP::Request->new(GET=>"$host");$request->header(@header);$response = $ua->request($request); $content= $response->decoded_content;$content =~ s/\\u([0-9a-fA-F]{4})/pack("U",,hex($1))/eg; print "\$content is $content\n";[root@dr-mysql01 ~]# set -o vi[root@dr-mysql01 ~]# ^Crl zabbix.pl  a[root@dr-mysql01 ~]# perl hcp.pl BJP TJP 2015-12-11$content is <h1>403 Forbidden</h1>[root@dr-mysql01 ~]# perl hcp.pl BJP TJP 2015-12-11$content is <h1>403 Forbidden</h1>[root@dr-mysql01 ~]# perl hcp.pl BJP TJP 2015-12-11$content is <h1>403 Forbidden</h1>[root@dr-mysql01 ~]# perl hcp.pl BJP TJP 2015-12-11Wide character in print at hcp.pl line 20.$content is {"status": true, "validateMessagesShowId": "_validatorMessage", "messages": [], "httpstatus": 200, "validateMessages": {}, "data": {"message": "没有符合条件的数据!", "flag": false}}[root@dr-mysql01 ~]# vim hcp.pl You have new mail in /var/spool/mail/root[root@dr-mysql01 ~]# perl hcp.pl BJP TJP 2015-12-11$content is {    "error": "Key not authorised"}

0 0
原创粉丝点击