From d006afb818eeb5978aef6c84ec63104f86b087fe Mon Sep 17 00:00:00 2001 From: mitty Date: Sat, 11 Sep 2010 06:02:42 +0000 Subject: [PATCH] * change hash key name git-svn-id: https://lab.mitty.jp/svn/lab/trunk@47 7d2118f6-f56c-43e7-95a2-4bb3031d96e7 --- twitter/get_oauth.pl | 2 +- twitter/nt_bot.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/twitter/get_oauth.pl b/twitter/get_oauth.pl index 505d228..ca2199c 100755 --- a/twitter/get_oauth.pl +++ b/twitter/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/twitter/nt_bot.pl b/twitter/nt_bot.pl index 623560b..5b005ca 100755 --- a/twitter/nt_bot.pl +++ b/twitter/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'}; -- 1.7.9.5