Help for this page

Select Code to Download


  1. or download this
    use Encode qw( decode from_to );
    
    ...
    # the content encoding is detected.
    open my $fh, '>:encoding(iso-8859-5)', $qfn;
    print $fh $response->decoded_content;
    
  2. or download this
    my $file = $response->content;
    
  3. or download this
    my $file = $response->decoded_content;
    
  4. or download this
    my $file = decode('windows-1251', $response->content);