如何在 Perl 中使用 LWP::UserAgent 获取 HTTP 响应的正文?

发布于 2024-08-15 14:31:29 字数 99 浏览 6 评论 0原文

我发现 LWP::UserAgent->request() 的返回包含 HTTP 响应的标头和正文。我只需要响应的正文进行一些解析,所以我怎样才能 做?

I find that the return from LWP::UserAgent->request() contains both the header and body of a HTTP response. I just need the body of the response to do some parsing, so how can I
do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

-柠檬树下少年和吉他 2024-08-22 14:31:29
require LWP::UserAgent;

my $ua = LWP::UserAgent->new;

my $response = $ua->get('http://search.cpan.org/');

if ($response->is_success) {

    print $response->decoded_content;  # or whatever
}
else {
    die $response->status_line;
}

response->decoded_content 将返回响应的正文。

require LWP::UserAgent;

my $ua = LWP::UserAgent->new;

my $response = $ua->get('http://search.cpan.org/');

if ($response->is_success) {

    print $response->decoded_content;  # or whatever
}
else {
    die $response->status_line;
}

response->decoded_content will return the body of the response.

北方。的韩爷 2024-08-22 14:31:29

request 方法(根据手册)返回一个 HTTP::Response 对象,它有一个 content 方法。就这样称呼吧。

$ua->request->content;

The request method (according to the manual) returns an HTTP::Response object, which has a content method. Just call that.

$ua->request->content;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文