Created
February 15, 2021 02:25
-
-
Save moomdate/acbcb2524617a888583921532ada103d 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 doRequest(){ | |
var response = UrlFetchApp.fetch("https://api.bitkub.com/api/market/ticker"); | |
var body = JSON.parse(response); | |
const {last} = body.THB_XRP; | |
if(last > 11){ | |
// sendLineNotify(last); | |
Logger.log(`push notification XRP: ${last}`); | |
} | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
sheet.getRange(3,2).setValue([last]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment