1
2
3
4
5
6
7
8
9
10
11
12
13
14
-----------------------------596088922920
Content-Disposition: form-data; name="Filedata"; filename="mypic.gif"
Content-Type: image/gif
GIF87aX# *shorted* ¡§\
-----------------------------596088922920
Content-Disposition: form-data; name="session"
92384729384792384729384729384
-----------------------------596088922920
Content-Disposition: form-data; name="method"
put
-----------------------------596088922920--
1
2
3
4
5
6
7
8
use WWW::Mechanize;
$agent = WWW::Mechanize->new( cookie_jar => {} );
$agent->post('http://www.kleiderkreisel.de/photo/ajax_photo_action',
[
"Filedata" => ['mypic.gif' => 'C:\Pics\mypic.gif'],
'session' => '92384729384792384729384729384',
'method' => 'put'
]);
1
2
3
$agent->post('http://www.kleiderkreisel.de/photo/ajax_photo_action',
(...)
'method' => 'put'