Próbuję wysyłać SMS-y na mój telefon komórkowy za pomocą Perla i Google Voice.
Zainstalowałem moduł Google :: Voice z Perlem:
perl -MCPAN -e "install Google::Voice"
skrypt perla:
use Google::Voice;
my $g = Google::Voice->new->login('my_account', 'my_password');
#send the text!
$g->send_sms('phone_number' => 'message to send'); #line 4
Mam ten błąd
Can't call method "send_sms" on an undefined value at sms.pl line 4.