TwitterのApplication-only authenticationをperlで試す。 今日発表された「Application-only authentication」でaccess tokenをperlで取得しREST API v1.1で試してみた。 https://dev.twitter.com/docs/auth/application-only-auth ■access token取得 #!/usr/bin/perl use CGI; use LWP::UserAgent; use JSON; use URI::Escape; use MIME::Base64; my $consumer_key = 'YOUR CONSUMER KEY'; my $consumer_key_secret = 'YOUR CONSUMER KEY SECRET'; $Authorizati