gpt4 book ai didi

perl - LWP::Protocol::https 未安装(如何安装?)

转载 作者:行者123 更新时间:2023-12-04 00:41:58 25 4
gpt4 key购买 nike

有人可以帮我吗?我创建了一个 Perl 脚本来运行 https 任务。当我运行它时,我收到错误 LWP::Protocol::https not installed。

我无法弄清楚或找到有关如何安装 LWP::Protocol::http 的教程或命令。任何人都知道如何安装它?安装 LWP 非常简单。

我已经安装了 LWP 并安装了 Crypt-SSLeay,但是我仍然收到错误消息。这是我的代码:

use LWP::UserAgent;

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


# set custom HTTP request header fields

my $req = HTTP::Request->new(PUT => "https://thesite.com");

$req->header('Authorization' => 'myauth');
$req->header('Accept' => 'JSON:Application/JSON');
$req->header('Content-Type' => 'JSON:Application/JSON');
$req->header('Host' => 'api.thesite.com');

$req->content('Text' => 'thetext');



my $resp = $ua->request($req);
if ($resp->is_success) {
my $message = $resp->decoded_content;
print "Received reply: $message\n";
}
else {
print "HTTP POST error code: ", $resp->code, "\n";
print "HTTP POST error message: ", $resp->message, "\n";
}

谢谢你的帮助!!

最佳答案

sudo yum install perl-LWP-Protocol-https为我解决了问题。

关于perl - LWP::Protocol::https 未安装(如何安装?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21123620/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com