誰かが私を助けてくれますか? httpsタスクを実行するPerlスクリプトを作成しました。実行すると、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
問題を修正しました。
ランニング Sudo cpan install LWP::Protocol::https
これを修正しました。