Skip to content

Instantly share code, notes, and snippets.

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