GASでおんどとりWeb Storage APIを利用する。
Python版はこちら
こんどはGASでおんどとりWEB STORAGE APIを利用してみた。
function temps(){ const url = "https://api.webstorage.jp/v1/devices/current" const api_key = "【API_KEY】" const login_id ="【ID】" const password = "【PASSWORD】" const furo_temp = () => { var paylord = {'api-key':api_key,"login-id":login_id,'login-pass':password} var headers = { "X-HTTP-Method-Override":'GET', "Content-Type" : "application/json",} var options = { "method" : "post", "payload" : JSON.stringify(paylord), "headers" : headers, "muteHttpExceptions":true } return UrlFetchApp.fetch(url,options); } return JSON.parse(furo_temp()) } Logger.log(temps())
後はお好きにすると良いと思います。