如何在 Perl 中使用 LWP::UserAgent 获取 HTTP 响应的正文?
我发现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
response->decoded_content
将返回响应的正文。response->decoded_content
will return the body of the response.request
方法(根据手册)返回一个 HTTP::Response 对象,它有一个content
方法。就这样称呼吧。The
request
method (according to the manual) returns an HTTP::Response object, which has acontent
method. Just call that.