From: mitty Date: Sat, 11 Sep 2010 06:02:42 +0000 (+0000) Subject: * change hash key name X-Git-Url: http://lab.mitty.jp/git/?p=lab.git;a=commitdiff_plain;h=1bdb8c890572d3980cddefe48f7175d97d4e28de * change hash key name git-svn-id: https://lab.mitty.jp/svn/lab/trunk/twitter@47 7d2118f6-f56c-43e7-95a2-4bb3031d96e7 --- diff --git a/get_oauth.pl b/get_oauth.pl index 505d228..ca2199c 100755 --- a/get_oauth.pl +++ b/get_oauth.pl @@ -8,7 +8,7 @@ use YAML::Tiny; my $config = (YAML::Tiny->read('config.yml'))->[0]; my $consumer_key = $config->{'consumer_key'}; -my $consumer_key_secret = $config->{'consumer_key_secret'}; +my $consumer_key_secret = $config->{'consumer_secret'}; my $access_token = $config->{'access_token'}; my $access_token_secret = $config->{'access_token_secret'}; diff --git a/nt_bot.pl b/nt_bot.pl index 623560b..5b005ca 100755 --- a/nt_bot.pl +++ b/nt_bot.pl @@ -8,7 +8,7 @@ use YAML::Tiny; my $config = (YAML::Tiny->read('config.yml'))->[0]; my $consumer_key = $config->{'consumer_key'}; -my $consumer_key_secret = $config->{'consumer_key_secret'}; +my $consumer_key_secret = $config->{'consumer_secret'}; my $access_token = $config->{'access_token'}; my $access_token_secret = $config->{'access_token_secret'};