2014-01-14 184 views
7

有人可以幫我嗎?我創建了一個Perl腳本來運行https任務。當我運行它時,我得到錯誤LWP :: Protocol :: https未安裝。LWP :: Protocol :: https未安裝(如何安裝?)

我找不出,或找到一個教程或命令如何安裝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"; 
} 

感謝您的幫助!

+3

如果錯誤告訴您未安裝「LWP :: Protocol :: https」,請安裝它。 – ThisSuitIsBlackNot

+0

哦,geesh。這是一個糟糕的一天。我需要編輯這個問題。我被如此抓住了,我沒有做正確的事情...... – CRAIG

+0

這個問題應該是......如何安裝它。我似乎無法在任何地方找到這些信息。 – CRAIG

回答

3

正在運行sudo cpan install LWP::Protocol::https爲我解決了這個問題。

0

sudo yum install perl-LWP-Protocol-https對我來說是一個問題。