in reply to MediaWiki::API->upload() problem

Have you tried googling for HTTP::Message content must be bytes at? Suggests an encoding problem...

Replies are listed 'Best First'.
Re^2: MediaWiki::API->upload() problem
by spekulum (Initiate) on Sep 27, 2011 at 15:47 UTC

    Yes, and I don't find solutions on old threads.

      Yes, and I don't find solutions on old threads.

      What do you mean?

      The solution is to only give bytes not utf or decoded_content

        Any decode functions don't work.

        $response return code of data in image format, i. e. png, jpg

        Some examples:

        $response = $response->content() if($response->is_success()); die Dumper($response);
        $ perl test.pl $VAR1 = '&#9618;PNG IHD&#9618;6n&#9618;sRGB&#9618;&#9618;&#9618;gAMA&#9618;&#9618; &#9618;a cHRMz&&#9618;&#9618;&#9618;&#9618;&#9618; +u0&#9618;`:&#9618;p&#9618;&#9618;Q<!IDATWc&#9618; &#9618;*1&#9618;&#9618;Ig&#9618; &#9618;&#9618;&#9618;+(&#9618;&#9618;K&#9618;&&#1432;IEND&#9618;B`&#96 +18;';
        $response = $response->decoded_content() if($response->is_success()); die Dumper($response);
        $ perl test.pl $VAR1 = '&#9618;PNG IHD&#9618;6n&#9618;sRGB&#9618;&#9618;&#9618;gAMA&#9618;&#9618; &#9618;a cHRMz&&#9618;&#9618;&#9618;&#9618;&#9618; +u0&#9618;`:&#9618;p&#9618;&#9618;Q<!IDATWc&#9618; &#9618;*1&#9618;&#9618;Ig&#9618; &#9618;&#9618;&#9618;+(&#9618;&#9618;K&#9618;&&#1432;IEND&#9618;B`&#96 +18;';
        $response = $response->content() if($response->is_success()); $response = utf8::downgrade($response); die Dumper($response);
        $ perl test.pl $VAR1 = 1;
        Probably, needs to use some specific libs for work with it?