in reply to [LWP::UserAgent] Send POST request and ignore response
Example:
# read response in chunks of 10 bytes, with a callback function # that dies when receiving the first chunk. This aborts reception # of the entire response. $ua->request( $req, sub { die }, 10 );
|
---|