GAS에서 LINE Notify하는 함수 메모
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('送信するメッセージ');
덤
이런 식으로 함수별로 파일을 만들어 두면 관리하기 쉽습니다.
Reference
이 문제에 관하여(GAS에서 LINE Notify하는 함수 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/n0bisuke/items/6185855a827786934577텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)