HTTPS get requests with NodeMCU and ESP8266
问题 I'm having problems doing a HTTPS GET request with NodeMCU, even though it seems it should be possible according to their documentations and this answer here on StackOverflow. The code I'm trying is: function getHTTPS() http.get('https://httpbin.org/get', nil, function(code, data) print(code, data) end) end enduser_setup.start( function() print("Connected to wifi as: " .. wifi.sta.getip()) getHTTPS() end, function(err, str) print("enduser_setup: Err #" .. err .. ": " .. str) end ); This gets