はじめに
LINE Notify APIの Node.js ライブラリを作りました。
https://www.npmjs.com/package/line-notify-nodejs
使い方とサンプルソースを紹介します。
使用イメージ
インストール
$ npm install line-notify-nodejs
使い方
簡単 2STEP です。
STEP1. トークンを発行する
下記ページからトークンを発行します。
STEP2. 通知を送信する
index.js
const lineNotify = require('line-notify-nodejs')('****************'; // 先ほどコピーしたトークン
await lineNotify.notify({
message: 'send test',
});
console.log('send completed!');
$ npm run index.js