var LINE_NOTIFY_TOKEN = "あああ"; var LINE_NOTIFY_API = "https://notify-api.line.me/api/notify"; //LINEにメッセージを送る function sendLineMessage(msg) { var response = UrlFetchApp.fetch(LINE_NOTIFY_API, { "method": "post", "headers": { "Authorization": "Bearer " + LINE_NOTIFY_TOKEN }, "payload": { "message": msg } }); } //test function main() { sendLineMessage("テストです"); } //スプレッドシートから送信 function sendSpMsg() { var sheet = SpreadsheetApp.getActiveSheet(); var values = sheet.getRange("B2:B5").getValue(); sendLineMessage(values); }
スプレッドシートの決められた行をラインに送れるようにしたいです。
ネットから拾ってきたものを使ったのですが、下記のようなエラーが出ます。
素人で申し訳ないのですが、わかる方教えて頂けたら幸いです。
よろしくお願いいたします。
Exception: Request failed for https://notify-api.line.me returned code 400. Truncated server response: {"status":400,"message":"message: must not be empty"} (use muteHttpExceptions option to examine full response) sendLineMessage @ コード.gs:7
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/26 10:24
2021/02/26 10:47
2021/02/26 10:55
2021/02/27 06:07 編集