GAS에서 LINE Notify하는 함수 메모

최근에는 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('送信するメッセージ');



이런 식으로 함수별로 파일을 만들어 두면 관리하기 쉽습니다.

좋은 웹페이지 즐겨찾기