Last active
February 15, 2021 02:27
-
-
Save moomdate/dfb59003a8e3e8ccfb952baec1bfe328 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sendLineNotify(value) { | |
var messages = { | |
"message": `ราคา XRP น้อยกว่า 11, ราคาปัจจุบัน ${value}` | |
}; | |
var url = "https://notify-api.line.me/api/notify"; | |
var token = "ใส่ line noti token"; | |
var options = { | |
"method": "post", | |
"payload": messages, | |
"headers": { | |
"Authorization": "Bearer " + token | |
} | |
}; | |
UrlFetchApp.fetch(url, options); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment