Я пытаюсь отправить смс на свой мобильный телефон с Perl и Google Voice.
Я установил модуль Google :: Voice с Perl:
perl -MCPAN -e "install Google::Voice"
скрипт perl:
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
Я получил эту ошибку
Can't call method "send_sms" on an undefined value at sms.pl line 4.