Line Bot에서 브로드캐스트 메시지를 사용하여 친구 모두에게 메시지를 일제히 보냈다.

소개



Line Bot에서 친구 모두에게 메시지를 보낼 때 브로드캐스트 메시지를 사용하면 쉽게 할 수 있었기 때문에 메모.

송신 방법



Google App Script 사용.
CHANNEL ACCESS TOKEN을 Line Bot 액세스 토큰으로 바꿉니다.
const token = 'CHANNEL ACCESS TOKEN';

function broadcast() {
  UrlFetchApp.fetch('https://api.line.me/v2/bot/message/broadcast', {
    method: 'post',
    headers: {
      'Content-Type': 'application/json',
      'Authorization': 'Bearer ' + token,
    },
    payload: JSON.stringify({
      messages: [
        {
            type: 'text',
            text: 'メッセージ1'
        },
        {
            type: 'text',
            text: 'メッセージ2',
        }
      ]
    }),
  });
}

실행 결과





참고


  • Messaging API 참조 | LINE Developers
  • GAS와 LINE Messaging API로 push 메시지의 LINEbot 만들기!
  • 좋은 웹페이지 즐겨찾기