http://qs321.pair.com?node_id=11118379


in reply to Re^3: LWP::Useragent - File Upload
in thread LWP::Useragent - File Upload

As I spent hours to make it finally work, here my working solution:
my $ua = LWP::UserAgent->new(); my $url = "http://your_url"; my $filename = "d:\\clips\\videoclip.mp4"; my $response = $ua->post($url, ['file' => [ $filename ]], 'Content_Type' => 'form-data' # add here more header paramete +rs if necessary );