use LWP::UserAgent;
use Data::Dumper;
my $ua = new LWP::UserAgent;
$ua->agent("AgentName/0.1 " . $ua->agent);
my $req = new HTTP::Request POST => 'http://example.com';
$req->content('port=8', 'target=64'); #problem
my $res = $ua->request($req);
print Dumper($res->content);
$req->content を使用して複数のコンテンツを送信するにはどうすればよいですか? $req->content はどのようなデータを期待していますか?
最後の 1 つだけを送信します。
編集:
「port=8&target=64」のようにフォーマットすると、機能することがわかりました。より良い方法はありますか?