我无法让以下内容正常工作并且已经没有想法了。我以前成功地使用过这个设置,但是在两个脚本之间有一个 JS 脚本,我目前不能使用那个实现。
第一个脚本用于通过 perl 脚本从用户那里收集数据,它应该将数据发送到脚本二的 CGI 参数,但它要么没有传递值,要么它们为空。我确实收到了 200 HTTP 响应,因此在第二个脚本上执行不是问题。
脚本 1:
#!/usr/bin/perl
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
my $server_endpoint = "http://urlthatisaccessable.tld/script.pl";
# set custom HTTP request header fields
my $req = HTTP::Request->new(POST => $server_endpoint);
$req->header('content-type' => 'application/json');
# add POST data to HTTP request body
my $post_data = '{ "name": "Dan" }';
$req->content($post_data);
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";
}
脚本 2:
#!/usr/bin/perl
# Title Processor.pl
use CGI;
my $cgi = CGI->new;
my $local = $cgi->param("name");
print $cgi->header(-type => "application/json", -charset => "utf-8");
print "$local was received";
输出:
#perl stager.pl
Received reply: was received
因此收到 200 并且 $local 变量为空。我将它打印到日志文件并插入了一个空行。
在此先感谢您的帮助。