newdash: use https

master
q3k 2022-07-05 19:25:32 +02:00
parent 5bf192e1be
commit e90c7238b4
1 changed files with 7 additions and 7 deletions

View File

@ -1,23 +1,23 @@
local socket = require("socket")
local http = require("socket.http")
local https = require("https")
local json = require("vendor.json")
local weatherURL = 'https://openweathermap.org/data/2.5/weather?id=6695624&units=metric&appid=b6907d289e10d714a6e88b30761fae22'
local spejsiotURL = 'http://spejsiot.waw.hackerspace.pl/api/1/devices'
local atURL = 'http://at.hackerspace.pl/api'
local weatherURL = 'https://openweathermap.org/data/2.5/weather?id=6695624&units=metric&appid=439d4b804bc8187953eb36d2a8c26a02'
local spejsiotURL = 'https://spejsiot.waw.hackerspace.pl/api/1/devices'
local atURL = 'https://at.hackerspace.pl/api'
local spejsiotData = {}
local atData = nil
local r, c, h = http.request(weatherURL)
local c, r, h = https.request(weatherURL)
if c == 200 then
local data = json.decode(r)
local r, c, h = http.request(spejsiotURL)
local c, r, h = https.request(spejsiotURL)
if c == 200 then
spejsiotData = json.decode(r)
end
local r, c, h = http.request(atURL)
local c, r, h = https.request(atURL)
if c == 200 then
atData = json.decode(r)