|
Hi,
I have a small script that tweets for me. But when it tweets, Twitter says the tweet came from 'Perl Net::Twitter', which is the default client name.
So I changed my clientname thusly:
my $twitter = Net::Twitter->new(
username => 'johnmacgulfy',
password => 'n0tr3411ymyp4555w0rd,
clientname => 'Test client name'
);
my $msg = 'The world is a pea';
$twitter->update( $msg);
The tweet shows up just fine, but with the default 'Perl Net::Twitter' clientname.
I even tried setting the clientname in the update like this:
$twitter->update( {status=>$msg,clientname=>'testclient'});
I also tried changing the useragent to see if that would help. But to no avail. Am I doing something wrong or is this a bug?
|