Отправить смс с Perl и Google Voice
Я пытаюсь отправить смс на свой мобильный телефон с 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.
1 ответ
Из документации:
login
Login. Returns object on success, false on failure.
Таким образом, похоже, что вход в систему не удалось. Пожалуйста, не пропускайте проверку ошибок, прежде чем спрашивать.