Help for this page
# Remove Content-Encoding (e.g. compression), # but leave document as bytes. my $xml = $response->decoded_content( charset => 'none' );
# Expat expects the string to use this internal format. utf8::downgrade($xml) if $] ge '5.008'; $p->parse($xml);