Skip to content

Instantly share code, notes, and snippets.

@matsuu
Created August 26, 2009 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matsuu/175600 to your computer and use it in GitHub Desktop.
Save matsuu/175600 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings;
use utf8;
use Net::Twitter::Lite;
my $twitter = Net::Twitter::Lite->new(
username => 'matsuu',
password => 'xxxxxx',
);
eval {
$twitter->update("日本語テスト1");
$twitter->update({ status => "日本語テスト2" });
$twitter->update("日本語テスト3");
$twitter->update({ status => "日本語テスト4" });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment