We use Perl Net: Twitter CPAN module (version 3.12) and basic authentication (and not OAuth) almost a year ago, the syndicate of updates from our website to our Twitter account. Last week, we switched to a new server, and since the transition, our updates on Twitter have stopped, and with each attempt to publish an update, the following message is displayed:
HTTP::Message content not bytes at /usr/lib/perl5/site_perl/5.8.8/HTTP/Request/Common.pm line 90
Here is the code we use in our Twitter account:
use Net::Twitter; my $twitter = Net::Twitter->new( traits => [qw/API::REST/], username => $username, password => $password, source => 'twitterfeed' ); my $result = $twitter->update($status);
I have no idea what the problem is, and was hoping that someone else would run into this problem and could provide a quick solution. Thanks in advance for your help!
source share