NAME
Net::LineNotify - LINE Notify API用の簡単なPerlラッパー
SYNOPSIS
use Net::LineNotify;
my $line = Net::LineNotify->new(access_token => 'YOUR_ACCESS_TOKEN');
$line->send_message('Hello from Perl!');
# テストモード
my $line_test = Net::LineNotify->new(access_token => 'dummy_token', test_mode => 1);
$line_test->send_message('This will not actually send a message.');
DESCRIPTION
Net::LineNotify
は、LINE Notify APIを使用してLINEアカウントに通知を送信するためのシンプルなPerlモジュールです。
METHODS
new
my $line = Net::LineNotify->new(access_token => 'YOUR_ACCESS_TOKEN', test_mode => 0);
新しいNet::LineNotify
オブジェクトを作成します。`access_token` は必須です。`test_mode` を有効にすると、実際にリクエストを送信せずに成功の結果を返します。
send_message
$line->send_message('Your message here');
指定したメッセージをLINEに送信します。送信が成功すれば1を返し、失敗すれば0を返します。
AUTHOR
Kawamura Shingo <pannakoota@gmail.com>
LICENSE
このライブラリはフリーソフトウェアです。Perlと同じ条件で再配布および変更が可能です。
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 69:
Non-ASCII character seen before =encoding in 'API用の簡単なPerlラッパー'. Assuming UTF-8