Skip to content

Instantly share code, notes, and snippets.

@moomdate
Last active February 15, 2021 02:27
Show Gist options
  • Save moomdate/dfb59003a8e3e8ccfb952baec1bfe328 to your computer and use it in GitHub Desktop.
Save moomdate/dfb59003a8e3e8ccfb952baec1bfe328 to your computer and use it in GitHub Desktop.
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