GASでLINE Notifyする関数メモ
3277 ワード
最近はGASがNode.jsのランタイムになったということでほぼ通常のJavaScriptと同様の書き方でいけますね。console.logとか
GASはよく使う訳じゃ無いけど、たまにコピペして使いたいときがあるのでメモっておきます。
関数
//LINE NotifyにPOST
function lineNotify(postText){
try {
const url = 'https://notify-api.line.me/api/notify'
const token = ''; //LINE NotifyのToken
const params = {
method: 'post',
headers: {
'Authorization': 'Bearer '+ token
},
payload: {
message : postText
}
}
const res = UrlFetchApp.fetch(url, params);
console.log(res);
} catch (error) {
console.log(error);
}
}
使う時
lineNotify('送信するメッセージ');
おまけ
こんな感じで関数ごとにファイル作っておくと管理しやすいです。
Author And Source
この問題について(GASでLINE Notifyする関数メモ), 我々は、より多くの情報をここで見つけました https://qiita.com/n0bisuke/items/6185855a827786934577著者帰属:元の著者の情報は、元の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 .