You are reading a single comment by @Wilberforce and its replies. Click here to read the full conversation.
  • Hi @Gordon

    From here:
    http://www.espruino.com/Internet

    HTTPS

    The only board currently supporting this is the Espruino Pico. To use HTTPS simply use it in the URL of any normal HTTP request:

    require("http").get("https://www.google.­com", function(res) {
      res.on('data', function(data) { /* ... */ });
    });
    

    To specify keys and certificates, you can use an options object - see require('tls').connect(...)

    Does the get with https work without loading keys as implied above?

About

Avatar for Wilberforce @Wilberforce started