lwp-useragent

    0熱度

    1回答

    我試圖檢查寫在Perl其中通過亞馬遜API需要請求,並返回responses..How運行平行叉如在Perl單線程響應消息?我正在使用LWP :: UserAgent模塊,我想調試HTTP請求。

    2熱度

    1回答

    我正在嘗試使用LWP :: UserAgent設置憑據,但我無法登錄。$username,$passwd是正確的。我不明白我應該把什麼放在3rd argument(根據dos $realm,這裏是Authentication)。這裏摘錄: my $browser = LWP::UserAgent->new(agent => 'Mozilla/5.0 (Windows; U; Windows NT

    0熱度

    1回答

    我需要在一次Perl運行(進程)中更改代理服務器。但LWP::UserAgent始終記住第一個代理值。 當我用代理x.x.x.2啓動我的程序時,此地址始終用作代理。 出了什麼問題? 的簡單的程序實施例: getHTTP('http://my.com/', "http://x.x.x.1:3128"); getHTTP('http://my.com/', "http://x.x.x.2:3128"

    -4熱度

    1回答

    文件沒有下載,請幫忙。 #!/usr/bin/perl -w require HTTP::Response; require LWP::UserAgent; open (INPUT, "ndb_id_file.txt") or die "can't open ndb_id_file.txt"; @input = <INPUT> foreach $line(@input) { $

    0熱度

    1回答

    我試圖用LWP Perl的 我打開URL起坐彈出要求輸入用戶名和password.When我嘗試手動登錄登錄到一個URL授權的網頁,它成功但通過LWP,我得到401錯誤 my ($url) = @_; my $ua = LWP::UserAgent->new(keep_alive => 1, agent => "Mozilla/4.76 "); push @{ $ua->requests_re

    1熱度

    1回答

    是否有任何可能的方式來爬取Web服務器目錄並顯示其中的文件? 我找到了列出本地磁盤目錄中所有文件的方法。 這裏的目錄清單代碼: #!/usr/bin/perl use strict; use warnings; my $dir = '/home/srikanth/Documents/'; opendir(DIR, $dir) or die $!; while (my $file = re

    0熱度

    1回答

    我使用LWP::UserAgent version 6.03獲取網站的地位。 my $ua = LWP::UserAgent->new(ssl_opts => {verify_hostname => 0},); $ua->cookie_jar({}); $ua->agent('Mozilla/5.0'); push @{$ua->requests_redirectab

    2熱度

    1回答

    不是100%肯定這是一個Perl的問題,但它似乎是。我有一個IPN腳本與PayPal連接來驗證交易。它工作正常,直到昨天,當我安裝LWP :: Protocol :: https。從那時起,它已經失敗,出現錯誤: Can't connect to www.paypal.com:443 (certificate verify failed) LWP::Protocol::https::Socke

    -1熱度

    1回答

    由於兩天我無法生成bitly url。這裏是我有錯誤: $VAR1 = bless({ '_content' => 'Can\'t connect to api-ssl.bitly.com:443 LWP::Protocol::https::Socket: SSL connect attempt failed with unknown error error:0D0C50A1:as

    0熱度

    1回答

    我有兩個用Perl編寫的CGI腳本,我想在兩者之間實現以下通信順序。腳本A向腳本B發送POST請求,然後它應該等待B通過查詢數據庫來執行某種類型的驗證,然後B將成功或失敗返回給A以及自定義代碼,例如, 1122特定於我的應用程序,並在適當時繼續執行。這是使用LWP框架可以實現的嗎? 我試圖從A發送POST請求到B,然後等待在腳本中使用 while(<STDIN>) { $response