hi,
i am experiencing an error when making a simple https request on desktop windows after installing on fresh windows 10 machine.
var xmlHttpReq = new XMLHttpRequest()
xmlHttpReq.onreadystatechange = function() {
if(xmlHttpReq.readyState == xmlHttpReq.DONE && xmlHttpReq.status == 200) {
console.log("SUCCESS: "+JSON.stringify(xmlHttpReq.responseText))
}
else if(xmlHttpReq.readyState == xmlHttpReq.DONE && xmlHttpReq.status != 200) {
console.error("Error: Failed to load data from , status = "+xmlHttpReq.status+", response = "+XMLHttpRequest.responseText)
}
}
xmlHttpReq.open("GET", "https://maps.googleapis.com/maps/api/geocode/json?address=vienna", true)
xmlHttpReq.send()
output is:
qml: Error: Failed to load data from , status = 0, response = undefined
what could cause this error?
ssl again?