Amazon Dash ButtonからLINE通知
dasher導入
他の人が詳しく書いているので割愛。
個人的にはAmazon Dash Button と slackを連携させるという記事がとても参考になった。
LINEへのPUSH通知設定
LINE側の設定はLINE BOTでPUSH通知するを参照。
CHANNEL_ACCESS_TOKENとUSERIDは上記事で取得したもの。 MAC_ADDRESSはdasher導入時に取得したものを書くこと。
{"buttons": [
{
"name": "joy",
"address": "MAC_ADDRESS",
"url": "https://api.line.me/v2/bot/message/push",
"method": "POST",
"headers": {
"Content-Type": "application/json",
"Authorization": "Bearer {CHANNEL_ACCESS_TOKEN}"},
"json": true,
"body": {
"to": "USERID",
"messages": [
{
"type": "text",
"text": "JOY!"
}
]
}
}
]}