Curl

用於遠端 API 呼叫的 cURL/wget 替代方案

  • November 29, 2018

我在 IBM AIX 7.1 上,其中 cURL 和 wget 不可用。另外,我也無法安裝。

是否有可用的替代方法可以使用 GET/POST 進行遠端 API 呼叫?

由於 perl 在 AIX 中預設安裝,您可以使用 HTTP 和 LWP 模組;來自https://metacpan.org/pod/distribution/libwww-perl/lwpcook.pod#POST的範例是:

use HTTP::Request::Common qw(POST);
use LWP::UserAgent;
$ua = LWP::UserAgent->new;

my $req = POST 'https://rt.cpan.org/Public/Dist/Display.html',
             [ Status => 'Active', Name => 'libwww-perl' ];

print $ua->request($req)->as_string;

引用自:https://unix.stackexchange.com/questions/484670