« Back to full topics list
0
0
ANSWERED
Marked as spam
Posted by - Asked on January 3, 2017 12:12 pm - 102 views

1 Replies

1
Private reply

Hi Elie,

Of course you can use https as scriptr.io’s “http” module also handles SSL. The only thing you need to do is actually to invoke a URL with “https”, e.g. :

var http = require(“http”);
var params = {
url: “https://someurl.com/someresource”
};
http.request(params);

Marked as spam
Posted by - Replied on January 4, 2017 10:02 am