Subject: | HTTP::Request::Common::POST should accept content as a scalar ref |
If posting a large piece of content, it would be good to pass it as a
reference to the content. Currently one can not do this:
$useragent->post(
$uri, Content => \ $blob_of_xml, Content_Type => 'text/xml'
);
The only way I can see is to manually construct an HTTP::Request object.