gpt4 book ai didi

perl - 使用代理发布参数(perl)

转载 作者:行者123 更新时间:2023-12-02 04:15:06 25 4
gpt4 key购买 nike

我要发送参数(phd => text , go => submit)使用 http 代理。我怎样才能做到这一点?

我有这个 Perl 代码:

my $ua = LWP::UserAgent->new();
my $req = POST 'http://example.com',
[ phd => 'text' , go => 'submit'];
$content = $ua->request($req)->as_string;
print $content;

最佳答案

添加一条指令,以便用户代理知道您的代理的位置:

$ua->proxy("http", "http://localhost:8888");

至于关于 POST 是一个有效的裸词的评论(我可能不会注意到),我的模块中有这样的内容:
use HTTP::Request::Common qw( POST GET );

关于perl - 使用代理发布参数(perl),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3233428/

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