var https = require('https'); | |
var options = { | |
hostname: 'encrypted.google.com', | |
port: 443, | |
path: '/', | |
method: 'GET', | |
rejectUnauthorized: false | |
}; | |
var req = https.request(options, function(res) { | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment