From 1bdb8c890572d3980cddefe48f7175d97d4e28de 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/twitter@47 7d2118f6-f56c-43e7-95a2-4bb3031d96e7 --- get_oauth.pl | 2 +- nt_bot.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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'}; -- 1.7.9.5