そのまま、コピペーでできます!LineNotify api でlineグループにメッセージを送信する(PHP)
4721 ワード
①Lineグループを作る。
・Line Notifyのユーザーを友たちに追加します。
・Lineグループを作成します。
・Line Notifyのユーザーをグループに招待します。
②下記Urlにログインしてトークンを発行する。
③下記コードをそのまま使えば送信できます。
lineNoftify.php
function send($lineNotifyToken, $lineMessage)
{
$query = http_build_query(['message' => $lineMessage]);
$header = [
'Content-Type: application/x-www-form-urlencoded',
'Authorization: Bearer ' . $lineNotifyToken,
'Content-Length: ' . strlen($query)
];
$ch = curl_init('https://notify-api.line.me/api/notify');
$options = [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_HTTPHEADER => $header,
CURLOPT_POSTFIELDS => $query
];
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
curl_setopt_array($ch, $options);
// APIリクエスト
$result = curl_exec($ch);
$info = curl_getinfo($ch);
// リクエスト結果取得
$errno = curl_errno($ch);
$error = curl_error($ch);
curl_close($ch);
if (CURLE_OK !== $errno) {
Log::error();
}
return $result;
}
$lineNotifyToken = '〇〇〇〇〇〇〇〇';//こちらトークンを入れます。
$lineMessage = 'テスト'
sendLineNotify($lineNotifyToken, $lineMessage);
Author And Source
この問題について(そのまま、コピペーでできます!LineNotify api でlineグループにメッセージを送信する(PHP)), 我々は、より多くの情報をここで見つけました https://qiita.com/dymkou/items/e7bdfb4e1ac122487786著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .