in reply to Re^5: raw image data?
in thread raw image data?
And the dump of the $err hash ref:#!/usr/bin/perl -w use strict; use Net::Twitter; $\ = "\n"; my $img = "foo.png"; # Translate image to a raw format my $raw = do { open ( my $fh, '<:raw:perlio', $img ) or die "Can't open image file $img: $!"; local $/; <$fh>; }; # Create a connection to twitter my $twit = Net::Twitter->new( { username => "fake_uid", password => "fake_pwd", } ); # Post the image file $twit->update_profile_image( $raw ); # Grab the error hash ref and roll through it my $err = $twit->get_error; foreach my $key ( sort keys %{ $err } ) { print STDERR "$key => $err->{ $key }"; }
The "probably too big" is not a very good error message, is it? :) I also tried it with a 5px x 5px file and it spat out the same error. As I said earlier, the connection to twitter is working, because I can successfully post using the update() method.error => There was a problem with your picture. Probably too big. request => /account/update_profile_image.json
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^7: raw image data?
by kwaping (Priest) on Apr 22, 2009 at 16:24 UTC | |
by 23skiddoo (Beadle) on Apr 22, 2009 at 16:52 UTC | |
by Your Mother (Archbishop) on Apr 22, 2009 at 17:14 UTC |